[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.LastWorksheetName

LastWorksheetName Property

LastWorksheetName

Gets or sets the name of the end worksheet of the 3D reference.

Use this property together with WorksheetName to inspect or update the worksheet span represented by a 3D reference.

Declaration
public string LastWorksheetName { get; set; }
Public Property LastWorksheetName As String
Examples
Reference reference = new Reference();
reference.WorksheetName = "Sheet1";
reference.LastWorksheetName = "Sheet3";
string lastWorksheetName = reference.LastWorksheetName;