Class
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:

cs-api-definition
public class RowDefinition : NotifyPropertyBase, INotifyPropertyChangingEx, INotifyPropertyChanged

Inheritance: objectNotifyPropertyBaseRowDefinition

Implements: INotifyPropertyChangedINotifyPropertyChangingEx

Inherited Members NotifyPropertyBase.SuspendNotifications()NotifyPropertyBase.ResumeNotifications(bool)NotifyPropertyBase.ResumeNotifications()NotifyPropertyBase.OnPropertyChanged(string)NotifyPropertyBase.OnPropertyChanged(PropertyChangedEventArgs)NotifyPropertyBase.ProcessPropertyChanged(PropertyChangedEventArgs)NotifyPropertyBase.OnPropertyChanging(string, object, object)NotifyPropertyBase.OnPropertyChanging(string)NotifyPropertyBase.OnPropertyChanging(PropertyChangingEventArgsEx)NotifyPropertyBase.ProcessPropertyChanging(PropertyChangingEventArgsEx)NotifyPropertyBase.SetProperty<T>(string, ref T, T)NotifyPropertyBase.IsSuspendedNotifyPropertyBase.PropertyChangedNotifyPropertyBase.PropertyChanging

Constructors

RowDefinition()

Initializes a new instance of the RowDefinition class using the default height.

Declaration

cs-api-definition
public RowDefinition()

RowDefinition(int)

Initializes a new instance of the RowDefinition class.

Declaration

cs-api-definition
public RowDefinition(int height)

Parameters

height

int

The desired height of this RowDefinition.

Properties

BackColor

Gets or sets the background color of this RowDefinition.

Declaration

cs-api-definition
[Browsable(true)]
public Color BackColor { get; set; }

Property Value

Color

Cells

Gets a collection that contains all the cell definitions in the RowDefinition.

Declaration

cs-api-definition
[Browsable(true)]
public CellDefinitionsCollection Cells { get; }

Property Value

CellDefinitionsCollection

Height

Gets or sets the desired height of this RowDefinition.

Declaration

cs-api-definition
[Browsable(true)]
public int Height { get; set; }

Property Value

int

RowTemplate

Gets the RowTemplate that owns this RowDefinition.

Declaration

cs-api-definition
[Browsable(false)]
public RowTemplate RowTemplate { get; }

Property Value

RowTemplate

this[int]

Gets the CellDefinition at the specified index.

Declaration

cs-api-definition
[Browsable(false)]
public CellDefinition this[int index] { get; }

Parameters

index

int

The zero based index of the cell to get

Property Value

CellDefinition

The CellDefinition at the specified index.