RowTemplate
This class contains information that specifies how to arrange and display rows in the RadGridView.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class RowTemplate : NotifyPropertyBase, INotifyPropertyChangingEx, INotifyPropertyChanged
Inheritance: objectNotifyPropertyBaseRowTemplate
Implements:
Inherited Members
Constructors
Initializes a new instance of the RowTemplate class.
public RowTemplate()
Properties
Gets or sets the border width for this RowTemplate.
[Browsable(true)]
public int Border { get; set; }
Gets or sets the cell padding for this RowTemplate.
[Browsable(true)]
public int CellPadding { get; set; }
Gets or sets the cell spacing for this RowTemplate.
[Browsable(true)]
public int CellSpacing { get; set; }
Gets a collection that contains all the row definitions in the RowTemplate.
[Browsable(true)]
public RowDefinitionsCollection Rows { get; }
Gets the CellDefinition at the specified row and column
[Browsable(false)]
public CellDefinition this[int row, int column] { get; }
The zero based row index of the row containing the cell
columnintThe zero based column index of the column containing the cell
Property Value:The CellDefinition at the spfecified row and column
Gets the RowDefinition at the specified index.
[Browsable(false)]
public RowDefinition this[int index] { get; }
The zero based index of the row to get
Property Value:The RowDefinition at the specified index.
Methods
Reads XML data into the RowTemplate using the specified System.IO.Stream.
Reads XML data into the RowTemplate using the specified file.
public void ReadXml(string fileName)
The filename (including the path) from which to read.
Writes the current contents of the RowTemplate as XML using the specified Stream.
public void WriteXml(Stream stream)
The stream to which the data will be written.
Writes the current contents of the RowTemplate as XML using the specified file.
public void WriteXml(string fileName)
The file to which to write the XML data.