Represents a row info in the GridViewSpreadStreamExport.
Definition
Namespace:Telerik.WinControls.Export
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class GridViewSpreadStreamExportRowInfo : IGridViewSpreadExportRowInfoBase
Inheritance: objectGridViewSpreadStreamExportRowInfo
Derived Classes:
Implements:
Constructors
Initializes a new instance of the GridViewSpreadStreamExportRowInfo class.
C#
public GridViewSpreadStreamExportRowInfo(IList<IGridViewSpreadStreamExportCellInfo> cellInfos, int indent, bool exportAsHidden, int hierarchyLevel, double height)
The cell infos.
indentintThe indent.
exportAsHiddenboolThe export as hidden.
hierarchyLevelintThe hierarchy level.
heightdoubleThe height.
Properties
CellInfos
IList<IGridViewSpreadStreamExportCellInfo>
Gets or sets the cell infos.
C#
public IList<IGridViewSpreadStreamExportCellInfo> CellInfos { get; set; }
The cell infos.
Gets or sets the export as hidden.
C#
public bool ExportAsHidden { get; set; }
The export as hidden.
Implements:
Gets or sets the height.
C#
public double Height { get; set; }
The height.
Gets or sets the hierarchy level.
C#
public int HierarchyLevel { get; set; }
The hierarchy level.
Implements:
Gets or sets the indent cells.
C#
public int IndentCells { get; set; }
The indent cells.
Implements: