ArcObjects Library Reference (PublisherControls)  

IARConfiguration.BoolSetting Property

The configuration setting specified, whose value is a boolean.

[Visual Basic .NET]
Public Function get_BoolSetting ( _
    ByVal sName As String _
) As Boolean
[Visual Basic .NET]
Public Sub set_BoolSetting ( _
    ByVal sName As String, _
    ByVal pVal As Boolean _
)
[C#]
public bool get_BoolSetting (
    string sName
);
[C#]
public void set_BoolSetting (
    string sName,
    bool pVal
);

Product Availability

Available with ArcGIS Desktop. Requires Publisher Extension.

Description

To access a boolean setting within an ARConfiguration object use the BoolSetting property by supplying the name of the setting. Setting names are not case sensitive.

Beware that simply changing a setting value in the ARConfiguration does not guarantee that the ArcReaderControl will automatically pick up the new value, as it may be cached. In order ensure the new setting value is picked up the ARConfiguration must be set back into the ArcReaderControl.

It is possible to add you own settings into a template file using the BoolSetting property. Ensure that any new settings you add have names distinct from the settings that are present in a template file by default. Overwriting a setting with a setting with the same name, but a different value type may cause a corrupt template that will cause problems when loaded into the ArcReaderControl.

Errors Returned

2002 800A07D2: The setting does not exist 

Remarks

Caution is required when updating any ARConfiguration settings. Ensure that the setting is updated with the correct value type, otherwise the application you are developing may not run. Ensure any new setting names are distinct from the internal setting names.

[C#]

In C# use the get_BoolSetting and set_BoolSetting methods, as indexed property accessors are not supported.

See Also

IARConfiguration Interface