[]
Gets the name of the workbook.
public string Name { get; }
Public ReadOnly Property Name As String
string workbookFullPath = Path.Combine("Users", "DefaultApps", "Documents", "Budget.xlsx");
WorkbookReference reference = WorkbookReference.FromFilePath(workbookFullPath);
string name = reference.Name;