ClassRowDefinition
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
RowDefinition()
Initializes a new instance of the RowDefinition class using the default height.
Declaration
public RowDefinition()
RowDefinition(int)
Initializes a new instance of the RowDefinition class.
Declaration
public RowDefinition(int height)
Parameters
height
The desired height of this RowDefinition.
Properties
BackColor
Gets or sets the background color of this RowDefinition.
Declaration
[Browsable(true)]
public Color BackColor { get; set; }
Property Value
Cells
Gets a collection that contains all the cell definitions in the RowDefinition.
Declaration
[Browsable(true)]
public CellDefinitionsCollection Cells { get; }
Property Value
Height
Gets or sets the desired height of this RowDefinition.
RowTemplate
Gets the RowTemplate that owns this RowDefinition.
Declaration
[Browsable(false)]
public RowTemplate RowTemplate { get; }
Property Value
this[int]
Gets the CellDefinition at the specified index.
Declaration
[Browsable(false)]
public CellDefinition this[int index] { get; }
Parameters
index
The zero based index of the cell to get
Property Value
The CellDefinition at the specified index.