[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorkbook.Path

Path Property

Path

Gets or sets the path of the workbook file represented by this workbook object.

Use this property to retrieve the path information associated with the current workbook. To get the workbook name together with its path, use FullName.

Declaration
string Path { get; set; }
Property Path As String
Examples
workbook.Path = Environment.CurrentDirectory;
workbook.Name = "Report.xlsx";
string path = workbook.Path;
string fullName = workbook.FullName;