can_export property

can_export property

Gets whether Aspose.3D supports export scene to current file format.

Example

The following code shows how to check if exporting to specified format is supported.

from aspose.threed import FileFormat

outputFormat = ".glb"
format = FileFormat.get_format_by_extension(outputFormat)
if format.can_export:
    print(f"Can export to {outputFormat}")

Definition:

@property
def can_export(self):
    ...

See Also