Spread WPF 15
GrapeCity.CalcEngine Namespace / CalcArray Class
Members


In This Topic
    CalcArray Class
    In This Topic
    Represents a CalcArray which wrap a source object like a two dimension array.
    Object Model
    CalcArray Class
    Syntax
    'Declaration
     
    Public MustInherit Class CalcArray 
    'Usage
     
    Dim instance As CalcArray
    public abstract class CalcArray 
    Remarks

    The RowCount indicates the count of row dimension. The ColumnCount indicates the count of column dimension.

    The index have two forms, one is expressed with Row and Column, and another is zero-based index. The equivalence for these tow forms is as below:
    [index] = [row]*[RowCount] + [column]

    Inheritance Hierarchy

    System.Object
       GrapeCity.CalcEngine.CalcArray

    See Also