Spread for ASP.NET 8.0 Product Documentation
SheetName Property (SheetView)
Example 


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
System.ArgumentExceptionNo 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.
FarPoint.Web.Spread.SheetView sv;
sv.SheetName = "Medical";
FpSpread1.Sheets.Add(sv);
Dim sv As New FarPoint.Web.Spread.SheetView
sv.SheetName = "Medical"
FpSpread1.Sheets.Add(sv)
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SheetView Class
SheetView Members

User-Task Documentation

Customizing the Appearance of the Sheet

 

 


Copyright © GrapeCity, inc. All rights reserved.