<Code Lib>
2025 Method
Changes 0
M

Document.Export(String, String, ViewSet, FBXExportOptions)

You are viewing the Revit 2025 API. This page also exists in Revit 2027 (latest).

Description:
Exports the document in 3D-Studio Max (FBX) format.
Remarks:
Though the 'options' argument is not currently used, an object still must be provided (may be null).

public bool Export(
	string folder,
	string name,
	ViewSet views,
	FBXExportOptions options
)

  • folder
    Output folder, into which file(s) will be exported. The folder must exist.
  • name
    Either the name of a single file or a prefix for a set of files. If null or empty, automatic naming will be used.
  • views
    Selection of views to be exported.Only 3D views are allowed.
  • options
    Options applicable to the FBX format.
Return Value Boolean Function returns true only if all specified views are exported successfully. The function returns False if exporting of any view fails, even if some views might have been exported successfully.

Loading…