API Documentation > Interfaces > Interface GeometryFlags
Interface GeometryFlags

package com.ptc.pfc.pfcExport;

public interface
GeometryFlags
extends
jxobject


Description
This interface contains flags indicating the format of an export file.
Not all geometry types are supported by all export formats. Use the method BaseSession.IsGeometryRepSupported(ExportType, GeometryFlags) to determine if a set of flags is valid for a particular export type.
See Also:
User Guide References:
Method Summary
boolean
Get method for attribute "AsQuilts"
Whether or not to export as a set of quilts.
boolean
Get method for attribute "AsSolids"
Whether or not to export as solid objects.
boolean
Get method for attribute "AsSurfaces"
Whether or not to export as a set of surfaces.
boolean
Get method for attribute "AsWireframe"
Whether or not export as wireframe entities.
void
SetAsQuilts (boolean value)
Set method for attribute "AsQuilts"
Whether or not to export as a set of quilts.
void
SetAsSolids (boolean value)
Set method for attribute "AsSolids"
Whether or not to export as solid objects.
void
SetAsSurfaces (boolean value)
Set method for attribute "AsSurfaces"
Whether or not to export as a set of surfaces.
void
SetAsWireframe (boolean value)
Set method for attribute "AsWireframe"
Whether or not export as wireframe entities.
Method Detail
GetAsWireframe
boolean
GetAsWireframe
()
SetAsWireframe
void
SetAsWireframe
(boolean value)
Whether or not export as wireframe entities.
GetAsSolids
boolean
GetAsSolids
()
SetAsSolids
void
SetAsSolids
(boolean value)
Whether or not to export as solid objects.
GetAsSurfaces
boolean
GetAsSurfaces
()
SetAsSurfaces
void
SetAsSurfaces
(boolean value)
Whether or not to export as a set of surfaces.
GetAsQuilts
boolean
GetAsQuilts
()
SetAsQuilts
void
SetAsQuilts
(boolean value)
Whether or not to export as a set of quilts.
Was this helpful?