Select to view content in your preferred language

How to access ArcMap Options using ArcObjects?

4483
3
Jump to solution
01-26-2015 03:53 AM
BarbaraSchneider1
Deactivated User

Is there a way to access the ArcMap Options using ArcObjects (In ArcMap select  Customize - ArcMap Options)?

0 Kudos
1 Solution

Accepted Solutions
3 Replies
nicogis
MVP Frequent Contributor

for example for cad:

//Set CadSettings to a new CadWorkspaceFactory.
ESRI.ArcGIS.DataSourcesFile.ICadSettings pCadSettings = new
    ESRI.ArcGIS.DataSourcesFile.CadWorkspaceFactory()as
    ESRI.ArcGIS.DataSourcesFile.ICadSettings;
//Enable support to examine all files for DGN format.
pCadSettings.EnableAllDgnFileExtensions = true;
//Print the results to the console.
Console.WriteLine("EnableAllDgnFileExtensions = {0}",
    pCadSettings.EnableAllDgnFileExtensions);

or for example hardware acceleration (IGlobalScreenDisplaySettings ) :

ArcObjects Help for .NET developers

see Interface *Settings

What's the setting that you need change?

0 Kudos
BarbaraSchneider1
Deactivated User

I need to change the raster layer settings. However, I cannot find IRasterLayerSettings or similar.

0 Kudos
nicogis
MVP Frequent Contributor