CellDefinition
This class contains information that specifies how to arrange and display a single cell in the RadGridView when a RowTemplate is used.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class CellDefinition : NotifyPropertyBase, INotifyPropertyChangingEx, INotifyPropertyChanged
Inheritance: objectNotifyPropertyBaseCellDefinition
Implements:
Inherited Members
Constructors
Initializes a new instance of the CellDefinition class using default values.
public CellDefinition()
Initializes a new instance of the CellDefinition class.
Initializes a new instance of the CellDefinition class using specified unique name.
public CellDefinition(string uniqueName)
The unique name for the column that will be presented by this cell
Properties
Gets or sets the background color of this CellDefinition.
[Browsable(true)]
public Color BackColor { get; set; }
Gets or sets the border width for this CellDefinition.
[Browsable(true)]
public int Border { get; set; }
Gets or sets the cell span value of this CellDefinition.
[Browsable(true)]
public int ColSpan { get; set; }
Gets the column index of this CellDefinition.
[Browsable(false)]
public int ColumnIndex { get; }
Gets the RowDefinition that owns this CellDefinition.
[Browsable(false)]
public RowDefinition Row { get; }
Gets the row index of this CellDefinition.
[Browsable(false)]
public int RowIndex { get; }
Gets or sets the row span value of this CellDefinition.
[Browsable(true)]
public int RowSpan { get; set; }
Gets or sets the unique name of the column related with this CellDefinition.
[Browsable(true)]
public string UniqueName { get; set; }
Gets or sets the desired width of this CellDefinition.
[Browsable(true)]
public int Width { get; set; }