Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / Name Property
Example


In This Topic
    Name Property (DefaultSheetDataModel)
    In This Topic
    Gets or sets the name of the data model.
    Syntax
    'Declaration
     
    Public Property Name As String
    'Usage
     
    Dim instance As DefaultSheetDataModel
    Dim value As String
     
    instance.Name = value
     
    value = instance.Name
    public string Name {get; set;}

    Property Value

    String containing the name
    Exceptions
    ExceptionDescription
    No name is specified; name is a null reference (Nothing in Visual Basic)
    Example
    This example returns the name of the model.
    FarPoint.Web.Spread.Model.DefaultSheetDataModel dsdm;
    
    private void PageLoad(object sender, System.EventArgs e)
    {
          dsdm = (FarPoint.Web.Spread.Model.DefaultSheetDataModel)FpSpread1.ActiveSheetView.DataModel;
          Response.Write(dsdm.Name);
    }
    
    Friend WithEvents dsdm As FarPoint.Web.Spread.Model.DefaultSheetDataModel
    
    Private Sub PageLoad(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
          dsdm = FpSpread1.ActiveSheetView.DataModel
          Response.Write(dsdm.Name)
    End Sub
    See Also