Skip to main content

The RxConfigCOM Object

Component name: RxConfigCOM.dll

Introduction to RxConfigCOM

General Information

The RxLoadSettings and RxSaveSettings objects allow your application to override the default settings used by filters for both file loading and saving.

NOTE: RxConfigCOM has been designed to cooperate with other RXSDK components and can only be used if these components are utilized to load and display the document.

The C++ listing below demonstrates how the component can be used to configure where the filter should look for AutoCAD font and reference files:

CComPtr<IRxLoadSettings> pIRxConfig; // Class member variable
pIRxConfig.CoCreateInstance(CComBSTR("RxConfigCom.RxLoadSettings"));
if (pIRxConfig)
{
// Setup AutoCAD filter to use fonts, and to load these from a folder named d:\fonts
pIRxConfig->raw_SetFilterLongValue(rxAcad2kUseFonts, 1);
pIRxConfig->raw_SetFilterStringValue(rxAcad2kFontFolders, CComBSTR("d:\\fonts"));
// Setup AutoCAD filter to load external referenced files from two folders:
pIRxConfig->raw_SetFilterStringValue(rxAcad2kXRefFolders, CComBSTR("d:\\xrefs;d:\\blocks\\xrefs;"));
// Then tell the engine that we have a configuration object
CComQIPtr<IDispatch> pDisp = pIRxConfig;
theApp.m_IRxEngine->raw_SetLoadFilterConfig(pDisp);
}

Note: It’s critical that the RxLoadSettings object pointer is provided to the RxEngine object before any file is loaded.

RxLoadSettings Methods

Contains methods for overriding default values used by filters. This may include XREF paths, font paths, and other settings. For a list of modifiable settings, see the table below.


SetFilterLongValue

Changes a filter setting that uses a long value. These settings align with those configurable in filter setting dialogs. Each setting is enumerated in the component and can be listed in VB and other development environments. More details are provided in the table below.

Syntax
SetFilterLongValue(enumLongSettings Setting, long data)
Parameters
  • Setting: Enumerated filter setting.
  • data: The long value to set.
Returns
  • HRESULT: S_OK on success, E_FAIL on failure.

Available Enumerated Long Values
NameFilterEffect
rxAcad2kHideFrozenLayerRxFilter_ACADFrozen layers will be hidden if non-zero.
rxAcad2kLoadAcisRxFilter_ACADACIS solid (3D objects) will be loaded if non-zero.
rxAcad2kLoadAttributesRxFilter_ACADBlocks and block attributes will be loaded if non-zero.
rxAcad2kUseFontsRxFilter_ACADIf non-zero, searches for AutoCAD fonts and uses them; otherwise, uses an internal font. See rxAcadFontFolders.
rxAcad2kUseDefaultFontRxFilter_ACADIf non-zero, uses a user-defined font for missing fonts. See rxAcadDefaultFont.
rxAcad2kZoomResolutionRxFilter_ACADIncreases resolution in vectorized AutoCAD files (legal values: 1 to 10).
rxAcad2kDefaultLayerSettingsRxFilter_ACADIf non-zero, uses default layer states.
rxAcad2kAllowBigFontFixRxFilter_ACADIf non-zero, enables big font fix for mixed codepages; 0 disables it.
rxDgn2DDisplayListRxFilter_DGNIf non-zero, loads all drawings as 2D, even if 3D.
rxDgnAddExtensionRxFilter_DGNIf non-zero, adds .dgn extension to reference files without an extension.
rxDgnLoadRasterRxFilter_DGNIf non-zero, loads raster images referenced in the DGN file.
rxDgnUseFontsRxFilter_DGNIf non-zero, uses fonts from a MicroStation font resource file. See DgnFontFileName.
Dgn8RecalcExtentsRxFilter_MicrostationV8If non-zero, calculates the drawing extent before loading.
rxCalcompAutoDetectRxFilter_CalcompIf non-zero, attempts to auto-detect files.
rxCalcompEOBRxFilter_CalcompCalcomp end-of-block byte.
rxCalcompExtraSyncRxFilter_CalcompCalcomp extra sync byte. See rxCalcompUseExtraSync.
rxCalcompSyncRxFilter_CalcompCalcomp sync byte.
rxCalcompUseCheckSumRxFilter_CalcompIf non-zero, assumes Calcomp files use a checksum.
rxCalcompUseExtraSyncRxFilter_CalcompIf non-zero, assumes Calcomp files use an extra sync byte.
rxGerberIncrementalRxFilter_GerberIf non-zero, assumes Gerber files use incremental coordinates.
rxGerberFileUnitsRxFilter_GerberSets Gerber file units: 1/100 mm, 1/1000 inch, 1/10000 inch, 1/100000 inch, 1/1000000 inch
rxBinaryPaperSizeRxFilter_BinarySets paper size for listing binary files.
rxBinaryPrinterDefaultsRxFilter_BinaryIf non-zero, uses the default printer's paper size for listing binary files.
rxTextFontCharSetRxFilter_TextCharacter set for text font (see LOGFONT in Platform SDK).
rxTextFontHeightRxFilter_TextHeight for text font (see LOGFONT in Platform SDK).
rxTextFontItalicRxFilter_TextIf non-zero, text filter font will be italic.
rxTextFontWeightRxFilter_TextWeight for text font (e.g., FW_BOLD, FW_EXTRABOLD; see LOGFONT in Platform SDK).
rxTextPaperSizeRxFilter_TextSets paper size for listing text files.
rxTextPrinterDefaultsRxFilter_TextIf non-zero, uses the default printer's paper size.
rxTextWordWrapRxFilter_TextIf non-zero, enables word wrapping.
rxMe10LoadPartsRxFilter_ME10Loads parts as separate blocks for listing.
rxMe10LoadAllPartsRxFilter_ME10Loads all instances of all parts.
rxMe10CompatibleModeRxFilter_ME10Enables support for older ME10 files if non-zero.

SetFilterStringValue

Changes a filter setting that uses a string value. Each setting is enumerated in the component and can be listed in VB and other development environments.

Syntax
SetFilterStringValue(enumStringSettings Setting, BSTR data)
Parameters
  • Setting: Enumerated filter setting.
  • data: The string value to set.
Returns
  • HRESULT: S_OK on success, E_FAIL on failure.

Available Enumerated String Values
NameFilterEffect
rxAcadDefaultFont, rxAcad2kDefaultFontRxFilter_AutoCAD, RxFilter_ACADIf rxAcadUseDefaultFont is non-zero, specifies the default font file for missing fonts or to override the internal font.
rxAcadFontFolders, rxAcad2kFontFoldersRxFilter_AutoCAD, RxFilter_ACADSets one or more folders (separated by ;) to search for requested fonts.
rxAcadXRefFolders, rxAcad2kXRefFoldersRxFilter_AutoCAD, RxFilter_ACADSets one or more folders (separated by ;) to search for requested reference files.
rxDgnFontFileNameRxFilter_DGNSets the full path of a MicroStation font resource file to use during file load.
rxDgnReferenceFoldersRxFilter_DGNSets one or more folders (separated by ;) to search for requested reference files.
Dgn8FontResourceFileRxFilter_MicrostationV8Sets the full path of a MicroStation font resource file to use during file load.
rxDgn8ReferenceFoldersRxFilter_MicrostationV8Sets one or more folders (separated by ;) to search for requested reference files.
Dgn8ShxFontFoldersRxFilter_MicrostationV8Sets one or more folders (separated by ;) to search for requested SHX font files.
rxVC5FontFolderRxFilter_VC5Sets a folder to search for requested SHX font files.
rxBinaryFontNameRxFilter_BinaryName of the font used when listing binary files.
rxTextFontNameRxFilter_TextName of the font used for displaying text files.

RxSaveSettings Methods


SetFilterLongValue

Changes a filter setting that uses a long value for saving. These settings align with those configurable in filter save setting dialogs. Each setting is enumerated in the component and can be listed in VB and other development environments. More details are provided in the table below.

Syntax
SetFilterLongValue(enumLongSettings Setting, long data)
Parameters
  • Setting: Enumerated filter setting.
  • data: The long value to set.
Returns
  • HRESULT: S_OK on success, E_FAIL on failure.

Available Enumerated Long Values
NameFilterEffect
rxAcadDxfVersion, rxAcadDwgVersionRxFilter_ACADSets the destination format for DWG/DXF conversions: AutoCAD R12 (0), AutoCAD R13 / LT95 (1), AutoCAD R14 / LT98 / LT97 (2), AutoCAD 2000 / LT 2000 (3), AutoCAD 2004 (4), AutoCAD 2007 (5), AutoCAD 2010 (6), AutoCAD 2013 (7)
rxAcadDxfFormatRxFilter_ACADSets DXF file format type: ASCII (0), Binary (1)
RxPDFCommentsRxFilter_PDFWIf non-zero, converts Rasterex markup elements to PDF markup elements.
RxPDFDrawModeRxFilter_PDFWIf non-zero, enables layer support for draw modes in converted PDF files (includes transparent objects).
RxPDFLayerRxFilter_PDFWIf non-zero, enables layer support in converted PDF files.
rxPDFStandardSelectRxFilter_PDFWSelects PDF standard for conversion: Plain PDF (0), PDF/A1b (1), PDF/A2b (2)
rxTiffColorCompressionRxFilter_TIFFSets compression method for TIFF color images: Uncompressed (0), Packbits (1), LZW (2)
rxTiffMonoCompressionRxFilter_TIFFSets compression method for TIFF monochrome images: Uncompressed (0), Group 3 (1), Group 4 (2), Packbits (3), LZW (4)
rxTiffByteOrderRxFilter_TIFFSets byte ordering in converted TIFF images: Motorola (Big-Endian) (0), Intel (Little-Endian) (1)