New to Telerik UI for WPFStart a free 30-day trial

Class that describes the backing data behind an instance of GridViewMergedCell.

Definition

Namespace:Telerik.Windows.Controls.GridView

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class MergedCellInfo

Inheritance: objectMergedCellInfo

Constructors

Initializes a new instance of the MergedCellInfo class.

C#
public MergedCellInfo(int horizontalStart, int verticalStart, int height, int width, object value)
Parameters:horizontalStartint

The horizontal start.

verticalStartint

The vertical start.

heightint

The height.

widthint

The width.

valueobject

The value.

Properties

Gets the height of the underlying GridMergedCell.

C#
public int Height { get; }
Property Value:

The height.

Gets the horizontal start of the underlying GridMergedCell.

C#
public int HorizontalStart { get; }
Property Value:

The horizontal start.

Gets a value that indicates whether the underlying GridViewMergedCell is the current one.

C#
public bool IsCurrent { get; }

Gets a value that indicates whether the underlying GridViewMergedCell is in edit mode.

C#
public bool IsInEditMode { get; }

Gets the value of the underlying GridMergedCell.

C#
public object Value { get; }
Property Value:

The value.

Gets the vertical start of the underlying GridMergedCell.

C#
public int VerticalStart { get; }
Property Value:

The vertical start.

Gets the width of the underlying GridMergedCell.

C#
public int Width { get; }
Property Value:

The width.

Methods

Determines whether the specified object is equal to the current object.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with the current object.

Returns:

bool

True if the specified object is equal to the current object; otherwise, False.

Overrides: object.Equals(object)

Serves as a hash function for a particular type.

C#
public override int GetHashCode()
Returns:

int

A hash code for the current object.

Overrides: object.GetHashCode()

Returns a string that represents the current object.

C#
public override string ToString()
Returns:

string

A string that represents the current object.

Overrides: object.ToString()