Class CellDefinition
This class contains information that specifies how to arrange and display a single cell in the Rad
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class CellDefinition : NotifyPropertyBase, INotifyPropertyChangingEx, INotifyPropertyChanged
Constructors
CellDefinition()
Initializes a new instance of the Cell
Declaration
public CellDefinition()
CellDefinition(String)
Initializes a new instance of the Cell
Declaration
public CellDefinition(string uniqueName)
Parameters
System. The unique name for the column that will be presented by this cell |
CellDefinition(String, Int32, Int32, Int32)
Initializes a new instance of the Cell
Declaration
public CellDefinition(string uniqueName, int width, int colSpan, int rowSpan)
Parameters
System. The unique name for the column that will be presented by this cell |
System. The desired width of this CellDefinition. |
System. The desired column span value |
System. The desired row span value |
Properties
BackColor
Gets or sets the background color of this Cell
Declaration
public Color BackColor { get; set; }
Property Value
System.
|
Border
Gets or sets the border width for this Cell
Declaration
public int Border { get; set; }
Property Value
System.
|
ColSpan
Gets or sets the cell span value of this CellDefinition.
Declaration
public int ColSpan { get; set; }
Property Value
System.
|
ColumnIndex
Gets the column index of this CellDefinition.
Declaration
public int ColumnIndex { get; }
Property Value
System.
|
Row
Gets the Row
Declaration
public RowDefinition Row { get; }
Property Value
RowIndex
Gets the row index of this CellDefinition.
Declaration
public int RowIndex { get; }
Property Value
System.
|
RowSpan
Gets or sets the row span value of this CellDefinition.
Declaration
public int RowSpan { get; set; }
Property Value
System.
|
UniqueName
Gets or sets the unique name of the column related with this Cell
Declaration
public string UniqueName { get; set; }
Property Value
System.
|
Width
Gets or sets the desired width of this Cell
Declaration
public int Width { get; set; }
Property Value
System.
|