Revit 2026 API
View |
Exports the schedule data to a text file.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public void Export( string folder, string name, ViewScheduleExportOptions options )
Public Sub Export ( folder As String, name As String, options As ViewScheduleExportOptions )
public: void Export( String^ folder, String^ name, ViewScheduleExportOptions^ options )
member Export : folder : string * name : string * options : ViewScheduleExportOptions -> unit
Parameters
- folder String
- Path to the location where the file will be saved.
- name String
- Name of file.
- options ViewScheduleExportOptions
- Options that relate to schedule export.
| Exception | Condition |
|---|---|
| ArgumentException | NullOrEmpty -or- Contains invalid characters. |
| ArgumentNullException | A non-optional argument was null |
| FileAccessException | The path indicated could not be accessed. |
| InvalidPathArgumentException | The folder does not exist. |
See Also