[]
Gets or sets the name of the worksheet.
Use this property to retrieve or update the start worksheet name associated with this reference. For a 3D reference, use LastWorksheetName to read or update the end worksheet name.
public string WorksheetName { get; set; }
Public Property WorksheetName As String
Reference reference = new Reference();
reference.WorksheetName = "Sheet1";
string worksheetName = reference.WorksheetName;