Tool.ExportDWF Steamnodes- How to use python to set DWFExportOptions property ExportTexture to be false?

Hi

I’m using SteaNodes Tool.ExportDWF to export dwfs, great node thanks!.
We have a few high res textures that are increasing the file size, I do not want to export the textures.

I see a function in the python code at line 43: x=DWFExportOptions()

I looked this function up http://www.revitapidocs.com/2018/e83b223d-b846-027e-8859-7ea5b89ea685.htm
image

I can see this is a boolean property, and there are notes for other languages.
image

How do I set this property to False in the python code?

Justin_Wright you could try:

x.ExportTexture= False

Boom!
Thanks!

1 Like