Class RowInfo
Represents a class that contains the information about the row information for printing.
Inheritance
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.UWP.dll
Syntax
public class RowInfo : Object
Constructors
RowInfo()
Declaration
public RowInfo()
Properties
CellsInfo
Gets or sets the list of CellInfo collection in row.
Declaration
public List<CellInfo> CellsInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<CellInfo> | The list of CellInfo collection in row. |
NeedBottomBorder
Gets or sets a value that indicates whether the bottom border is enabled around the row for printing.
Declaration
public bool NeedBottomBorder { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the bottom border is enabled around the row; otherwise, false. |
NeedTopBorder
Gets or sets a value that indicates whether the top border is enabled around the row for printing.
Declaration
public bool NeedTopBorder { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the top border is enabled around the row; otherwise, false. |
Record
Gets or sets the record for printing.
Declaration
public object Record { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object that contains the record for the row. |
RecordIndex
Gets or sets the index of the record.
Declaration
public int RecordIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the record. |
RowType
Defines the constants that specify the possible row type for each row.
Declaration
public RowType RowType { get; set; }
Property Value
Type | Description |
---|---|
RowType | Indicates that the current row type is RowType row. |