Class VisibleCellSpanBackgroundInfo
This class maintains the state of visible cell span background and lets you also access the underlying CellSpanBackground for which this visible cell span background was created and the row and column section this span belongs to.
Implements
System.IComparable
Inherited Members
Namespace: Syncfusion.Windows.Controls.Cells
Assembly: Syncfusion.GridCommon.WPF.dll
Syntax
public class VisibleCellSpanBackgroundInfo : VisibleCellSpanInfo, IComparable
Constructors
VisibleCellSpanBackgroundInfo()
Initializes a new instance of the VisibleCellSpanBackgroundInfo class.
Declaration
public VisibleCellSpanBackgroundInfo()
VisibleCellSpanBackgroundInfo(Int32, Int32, CellSpanBackgroundInfo)
Initializes a new instance of the VisibleCellSpanBackgroundInfo class.
Declaration
public VisibleCellSpanBackgroundInfo(int top, int left, CellSpanBackgroundInfo cellSpanBackground)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | top | The visible top row index. |
System.Int32 | left | The visible left column index. |
CellSpanBackgroundInfo | cellSpanBackground | The cell span background. |
Properties
CellSpanBackground
Gets the cell span background.
Declaration
public CellSpanBackgroundInfo CellSpanBackground { get; }
Property Value
Type | Description |
---|---|
CellSpanBackgroundInfo | The cell span background. |
ColumnSection
Gets or sets the column section.
Declaration
public int ColumnSection { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The column section. |
RowSection
Gets or sets the row section.
Declaration
public int RowSection { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The row section. |
Methods
ToString()
Returns a System.String that represents the current System.Object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents the current System.Object. |
Implements
System.IComparable