[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.NameNode.LastWorksheetName

LastWorksheetName Property

LastWorksheetName

Gets or sets the name of the last worksheet in the range.

This property stores the ending worksheet name when this NameNode represents a name scoped to a range of worksheets.

Declaration
public string LastWorksheetName { get; set; }
Public Property LastWorksheetName As String
Examples
NameNode nameNode = new NameNode("SalesTotal", "Sheet1", "Sheet3");
nameNode.LastWorksheetName = "Sheet4";
string lastWorksheetName = nameNode.LastWorksheetName;