Class RowsColumnsBase
Provides bas for the Rows and Columns classes.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class RowsColumnsBase : WorksheetEntityBase
Properties
Cells
Count
Gets the row / column count.
Declaration
public abstract int Count { get; }
Property Value
System.Int32
The row / column count. |
Methods
CanInsert(Int32, Int32)
Determines whether this instance can be inserted at the specified index.
Declaration
public abstract bool CanInsert(int index, int itemCount)
Parameters
System.Int32
index
The index. |
System.Int32
itemCount
The item count. |
Returns
System.Boolean
The value indicating whether this instance can be inserted at the specified index |
Insert(Int32)
Inserts the item at the specified index.
Declaration
public bool Insert(int index)
Parameters
System.Int32
index
The index. |
Returns
System.Boolean
The value indicating whether the insert command was successfully executed. |
Insert(Int32, Int32)
Inserts the specified number of items at the specified index.
Declaration
public bool Insert(int index, int itemCount)
Parameters
System.Int32
index
The index. |
System.Int32
itemCount
The item count. |
Returns
System.Boolean
The value indicating whether the insert command was successfully executed. |
InsertOverride(Int32, Int32)
Inserts the override.
Declaration
protected abstract bool InsertOverride(int index, int itemCount)
Parameters
System.Int32
index
The index. |
System.Int32
itemCount
The item count. |
Returns
System.Boolean
|
Remove(Int32)
Removes the item from the specified index.
Declaration
public void Remove(int index)
Parameters
System.Int32
index
The index. |
Remove(Int32, Int32)
Removes the specified number of items from the specified index.
Declaration
public void Remove(int index, int itemCount)
Parameters
System.Int32
index
The index. |
System.Int32
itemCount
The item count. |
RemoveOverride(Int32, Int32)
Removes the override.
Declaration
protected abstract void RemoveOverride(int index, int itemCount)
Parameters
System.Int32
index
The index. |
System.Int32
itemCount
The item count. |