# DWF / DWFX
## Inventor and InventorServer
When opening the following file formats in
Inventor or
InventorServer, *.dwf* and *.dwfx* files can be created for them (via the [TranslatorAddin]()):
* Inventor IAM
* Inventor IPT
* Inventor IPN
* Inventor IDW
* Inventor DWG
* AutoCAD DWG
(inventor-inventorserver-configuration)=
### Configuration
A complete list of export options for the *"Tranlsator: DWG - Addin"* can be found [here]().
To understand how the various ini settings relate to the Inventor user interface see the [PDF - Inventor and InventorServer]() section.\
There you can also find configuration examples for 2D drawings. For 3D formats use following ini as submission:
```{code-block}
:caption: Sample configuration for 3D documents - DWF_3D.ini
[EXPORT SELECT OPTIONS]
Publish_All_Sheets=0
Publish_3D_Models=0
Launch_Viewer=0
Password_Protect=0
Password=
Publish_Mode=62723
Enable_Large_Assembly_Mode=0
Enable_Measure=1
Enable_Printing=1
Enable_Markups=1
Enable_Markup_Edits=1
Output_Path=
Include_Sheet_Tables=1
Sheet_Metal_Flat_Pattern=0
Sheet_Metal_Style_Information=0
Sheet_Metal_Part=1
Weldment_Preparation=0
Weldment_Symbol=0
BOM_Structured=1
BOM_Parts_Only=1
Animations=0
Instructions=0
iAssembly_All_Members=0
iAssembly_3D_Models=0
iPart_All_Members=0
iPart_3D_Models=0
Publish_Component_Props=1
Publish_Mass_Props=1
Include_Empty_Properties=0
Publish_Screenshot=0
Screenshot_DPI=1
Facet_Quality=69379
Force_Facet_Recompute=0
Facet_Recompute_Tolerance=0.001
Override_Sheet_Color=0
Sheet_Color=14085613
Sheet_Range=14081
Custom_Begin_Sheet=1
Custom_End_Sheet=-1
All_Color_AS_Black=0
Remove_Line_Weights=0
Vector_Resolution=400
TranscriptAPICall=0
```
## DWG TrueView
DWG files (AutoCAD and Inventor) can be opened in
DWG TrueView and [converted]() to *.dwf* and *.dwfx*.
(dwg-trueview-configuration)=
### Configuration
To understand how the various dsd settings are generated by DWG TrueView and how to set them, see the [PDF - DWG TrueView]() section.\
There you can also find a dsd-file example.
To enable **multisheet- or singlesheet DWF or DWFx generation**, the `Type` setting can used:
```{code-block} PowerShell
:linenos:
Export-Document -format DWFx -To C:\Temp\Test.pdf -Options @{'Type'=4}
```
These are all possible `Type` settings for DWF and DWFx exports:
| Value | Description | |
| ----- | ------------------------------------ | --------------------------------------------------------------------------------- |
| 0 | SingleSheet(s) dwf | Separate dwf files are created for the model and for each layout of the drawing |
| 1 | MultiSheet dwf *(default for DWF)* | A single dwf file is created, with multiple pages for model and layouts |
| 2 | PlotterPageSetup | The plotter named in Page Settings is used for the export |
| 3 | SingleSheet(s) dwfx | Separate dwfx files are created for the model and for each layout of the drawing |
| 4 | MultiSheet dwfx *(default for DWFX)* | A single dwfx file is created, with multiple pages for model and layouts |