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