Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / GetCustomName Method / GetCustomName(String,Int32,Int32) Method
Custom name to get
Base row index for computing relative cell references
Base column index for computing relative cell references
Example


In This Topic
    GetCustomName(String,Int32,Int32) Method
    In This Topic
    Gets a named expression from the model with the specified base index for relative cell references.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetCustomName( _
       ByVal name As String, _
       ByVal baseRow As Integer, _
       ByVal baseColumn As Integer _
    ) As String
    'Usage
     
    
    Dim instance As DefaultSheetDataModel
    Dim name As String
    Dim baseRow As Integer
    Dim baseColumn As Integer
    Dim value As String
     
    value = instance.GetCustomName(name, baseRow, baseColumn)
    public string GetCustomName( 
       string name,
       int baseRow,
       int baseColumn
    )

    Parameters

    name
    Custom name to get
    baseRow
    Base row index for computing relative cell references
    baseColumn
    Base column index for computing relative cell references

    Return Value

    String containing the custom name
    Remarks
    This method gets a custom name from the model with relative cell references.
    Example
    This example returns a custom name from the model.
    See Also