Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SheetName Property
Example


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

    Property Value

    String containing the name of the sheet
    Exceptions
    ExceptionDescription
    No sheet specified or value is null
    Remarks

    This is the name that appears as a link in the command bar when sheet names tabs are visible.

    For multiple sheets, be careful not to make the names of the sheets so long that the command buttons and other elements of the command bar are not visible to the right of the names.

    This is also the name that is used when exporting sheets to Excel. If exporting to Excel, be sure that the sheet name does not have characters considered invalid by Excel. Refer to the remarks with the SaveExcel overload list for more information.

    Sheet names may have spaces. When referring to a sheet name in a cell reference, be sure to use single quotes if the sheet name has a space in it.

    Example
    This example adds the sheet to the collection.
    See Also