RowDefinition
This class contains information that specifies how to arrange and display a single row in the RadGridView when a RowTemplate is used.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class RowDefinition : NotifyPropertyBase, INotifyPropertyChangingEx, INotifyPropertyChanged
Inheritance: objectNotifyPropertyBaseRowDefinition
Implements:
Inherited Members
Constructors
Initializes a new instance of the RowDefinition class using the default height.
public RowDefinition()
Initializes a new instance of the RowDefinition class.
Properties
Gets or sets the background color of this RowDefinition.
[Browsable(true)]
public Color BackColor { get; set; }
Gets a collection that contains all the cell definitions in the RowDefinition.
[Browsable(true)]
public CellDefinitionsCollection Cells { get; }
Gets or sets the desired height of this RowDefinition.
[Browsable(true)]
public int Height { get; set; }
Gets the RowTemplate that owns this RowDefinition.
[Browsable(false)]
public RowTemplate RowTemplate { get; }
Gets the CellDefinition at the specified index.
[Browsable(false)]
public CellDefinition this[int index] { get; }
The zero based index of the cell to get
Property Value:The CellDefinition at the specified index.