The Autodesk.Revit.DB.DWFXExportOptions
class represents the set of options that control the export of Revit document to DWFX format.
This class provides the following properties to control the export options:
ExportOfSolids
: bool
Gets or sets a value indicating whether to export the solids in the model.
ExportOf2DElements
: bool
Gets or sets a value indicating whether to export the 2D elements in the model.
ExportOfLines
: bool
Gets or sets a value indicating whether to export the lines in the model.
ExportOfMaterials
: bool
Gets or sets a value indicating whether to export the materials in the model.
ExportOfTextures
: bool
Gets or sets a value indicating whether to export the textures in the model.
ExportOfViews
: bool
Gets or sets a value indicating whether to export the views in the model.
ExportOfSchedules
: bool
Gets or sets a value indicating whether to export the schedules in the model.
ExportOfLinkedFiles
: bool
Gets or sets a value indicating whether to export the linked files in the model.
ExportOfViewMaps
: bool
Gets or sets a value indicating whether to export the view maps in the model.
ExportOfSiteGeometry
: bool
Gets or sets a value indicating whether to export the site geometry in the model.
ExportOfPipes
: bool
Gets or sets a value indicating whether to export the pipes in the model.
ExportOfDucts
: bool
Gets or sets a value indicating whether to export the ducts in the model.
ExportOfConduits
: bool
Gets or sets a value indicating whether to export the conduits in the model.
ExportOfCableTrays
: bool
Gets or sets a value indicating whether to export the cable trays in the model.
ExportOfEquipment
: bool
Gets or sets a value indicating whether to export the equipment in the model.
By default, all properties of the Autodesk.Revit.DB.DWFXExportOptions
class are set to false
. This means that none of the elements in the model are exported by default. In order to specify which elements to export, the developer must set the corresponding property of this class to true
.
The Autodesk.Revit.DB.DWFXExportOptions
class is only used for exporting Revit documents to DWFX format. If you need to export Revit documents to other formats, such as DWG or DGN, you will need to use a different set of export options.