Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / NameInfo Class / NameInfo Constructor
The name of the custom named expression.
The base row index of the custom named expression.
The base column index of the custom named expression.
The calculate expression that is used to customize the named expression.


In This Topic
    NameInfo Constructor
    In This Topic
    Constructs a new custom named expression.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal name As String, _
       ByVal baseRow As Integer, _
       ByVal baseColumn As Integer, _
       ByVal expression As CalcExpression _
    )
    'Usage
     
    Dim name As String
    Dim baseRow As Integer
    Dim baseColumn As Integer
    Dim expression As CalcExpression
     
    Dim instance As New NameInfo(name, baseRow, baseColumn, expression)
    public NameInfo( 
       string name,
       int baseRow,
       int baseColumn,
       CalcExpression expression
    )

    Parameters

    name
    The name of the custom named expression.
    baseRow
    The base row index of the custom named expression.
    baseColumn
    The base column index of the custom named expression.
    expression
    The calculate expression that is used to customize the named expression.
    See Also