Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / AddCustomName Method / AddCustomName(String,Expression) Method
Name of the expression to add (used in formulas to reference the value)
Expression object to add
Example


In This Topic
    AddCustomName(String,Expression) Method
    In This Topic
    Adds a named expression to the model for use in formulas.
    Syntax
    'Declaration
     
    
    Public Overloads Sub AddCustomName( _
       ByVal name As String, _
       ByVal value As Expression _
    ) 
    'Usage
     
    
    Dim instance As DefaultSheetDataModel
    Dim name As String
    Dim value As Expression
     
    instance.AddCustomName(name, value)
    public void AddCustomName( 
       string name,
       Expression value
    )

    Parameters

    name
    Name of the expression to add (used in formulas to reference the value)
    value
    Expression object to add
    Remarks
    Adds a named expression (for use in formulas) to the model.
    Example
    This example adds a custom name to the model using the specified expression value.
    See Also