Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > EditWindow Object : SetDMISOutputOptions Method
Boolean value that determines whether or not PC-DMIS prints the contents of the Edit window as a DMIS output file.
String value identifies the filename and path for the created DMIS output file.
This parameter determines how PC-DMIS outputs the DMIS file.
With this parameter you can choose to not include theoretical values in the output DMIS file (PCD_DMIS_OUTPUT_THEOS_NONE), output all theoretical values along with the measured values (PCD_DMIS_OUTPUT_THEOS_ALL), or to only output theoretical values output by the DMIS program (PCD_DMIS_OUTPUT_THEOS_USE_IMPORTED_SETTING).
Boolean value that allows you determine whether or not to output the measured features and associated tolerances together in the output file.
SetDMISOutputOptions Method
Description

This function sets output options for printing the Edit window contents as a DMIS file.

Syntax
Visual Basic
Public Sub SetDMISOutputOptions( _
   ByVal bEnable As Boolean, _
   ByVal FileName As String, _
   ByVal bOverwrite As ENUM_DMIS_OVERWRITE, _
   ByVal bOutputTheos As ENUM_DMIS_OUTPUT_THEOS, _
   ByVal bOutputFeatWithDimensions As Boolean _
) 
Parameters
bEnable
Boolean value that determines whether or not PC-DMIS prints the contents of the Edit window as a DMIS output file.
FileName
String value identifies the filename and path for the created DMIS output file.
bOverwrite
ValueDescription
PCD_DMIS_FILE_ADD_INDEXAppends to the existing file name a number.
PCD_DMIS_FILE_APPENDAppends the DMIS output file to an existing file.
PCD_DMIS_FILE_OVERWRITEOverwrites an existing file with the new contents.
This parameter determines how PC-DMIS outputs the DMIS file.
bOutputTheos
ValueDescription
PCD_DMIS_OUTPUT_THEOS_ALLOutputs all theoretical values along with the measured values.
PCD_DMIS_OUTPUT_THEOS_NONENot include theoretical values in the output DMIS file.
PCD_DMIS_OUTPUT_THEOS_USE_IMPORTED_SETTINGOutputs theoretical values output by the DMIS program.
With this parameter you can choose to not include theoretical values in the output DMIS file (PCD_DMIS_OUTPUT_THEOS_NONE), output all theoretical values along with the measured values (PCD_DMIS_OUTPUT_THEOS_ALL), or to only output theoretical values output by the DMIS program (PCD_DMIS_OUTPUT_THEOS_USE_IMPORTED_SETTING).
bOutputFeatWithDimensions
Boolean value that allows you determine whether or not to output the measured features and associated tolerances together in the output file.
See Also