Hide menu
Loading...
Searching...
No Matches
cadex.ModelData.ModelReaderParameters Class Reference

Defines parameters of the ModelReader. More...

Inheritance diagram for cadex.ModelData.ModelReaderParameters:
cadex.BaseObject

Public Member Functions

 ModelReaderParameters (global::System.IntPtr cPtr, bool cMemoryOwn)
 
 ModelReaderParameters ()
 Constructor.
 
bool ReadPMI ()
 Specifies whether Product and Manufacturing Information (PMI) should be read from the file.
 
void SetReadPMI (bool theReadPMI)
 Sets whether Product and Manufacturing Information (PMI) should be read from the file.
 
bool ReadDrawing ()
 Specifies whether a drawing should be read from the file.
 
void SetReadDrawing (bool theReadDrawing)
 Sets whether a drawing should be read from the file.
 
bool EnableAnalyticalRecognition ()
 Specifies whether Analytical Recognition should be processed on the model.
 
void SetEnableAnalyticalRecognition (bool theEnableAnalyticalRecognition)
 Specifies whether Analytical Recognition should be processed on the model.
 
- Public Member Functions inherited from cadex.BaseObject
 BaseObject (global::System.IntPtr cPtr, bool cMemoryOwn)
 
void Dispose ()
 
bool IsNull ()
 
ulong Id ()
 Return unique identifier of public object.
 
bool IsEqual (cadex.BaseObject theObj)
 
override int GetHashCode ()
 
override bool Equals (System.Object o)
 

Protected Member Functions

override void Dispose (bool disposing)
 

Detailed Description

Member Function Documentation

◆ Dispose()

override void cadex.ModelData.ModelReaderParameters.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from cadex.BaseObject.

◆ EnableAnalyticalRecognition()

bool cadex.ModelData.ModelReaderParameters.EnableAnalyticalRecognition ( )
inline

Specifies whether Analytical Recognition should be processed on the model.

See also
SetEnableAnalyticalRecognition().

◆ ReadDrawing()

bool cadex.ModelData.ModelReaderParameters.ReadDrawing ( )
inline

Specifies whether a drawing should be read from the file.

See also
SetReadDrawing().

◆ ReadPMI()

bool cadex.ModelData.ModelReaderParameters.ReadPMI ( )
inline

Specifies whether Product and Manufacturing Information (PMI) should be read from the file.

See SetReadPMI().

◆ SetEnableAnalyticalRecognition()

void cadex.ModelData.ModelReaderParameters.SetEnableAnalyticalRecognition ( bool theEnableAnalyticalRecognition)
inline

Specifies whether Analytical Recognition should be processed on the model.

By default, it is true if feature is available.

See also
EnableAnalyticalRecognition().
Warning
This setting is part of Analytical Recognition add-on, which is licensed separately from the base Manufacturing Toolkit.
If you do not have it, the passed value will not cause any effect and false will be assigned.

◆ SetReadDrawing()

void cadex.ModelData.ModelReaderParameters.SetReadDrawing ( bool theReadDrawing)
inline

Sets whether a drawing should be read from the file.

By default, it is false.

See also
ReadDrawing().
Warning
This setting is part of Drawing add-on, which is licensed separately from the base Manufacturing Toolkit.
If you do not have it, the passed value will not cause any effect and false will be assigned.
Examples
exploring/drawings/Program.cs, and exploring/drawings/main.cxx.

◆ SetReadPMI()

void cadex.ModelData.ModelReaderParameters.SetReadPMI ( bool theReadPMI)
inline

Sets whether Product and Manufacturing Information (PMI) should be read from the file.

By default, it is false.

Warning
This setting is part of PMI add-on, which is licensed separately from the base Manufacturing Toolkit.
If you do not have it, the passed value will not cause any effect and false will be assigned.
Examples
exploring/pmi/main.cxx.