In This Topic
Sets the visibility of one or more in the context of an end-user UI. The array can contain layer names (strings) or
OptionalContentGroup references. The is interpreted as follows:
- true: the user explicitly made the layers visible.
- false: the user explicitly made the layers hidden.
- a null reference (Nothing in Visual Basic): the user did not change the visibility of the layers.
Syntax
'Declaration
Public Sub SetLayersUIState( _
ByVal As System.Nullable(Of Boolean), _
ByVal ParamArray () As System.Object _
)
public void SetLayersUIState(
System.Nullable<bool> ,
params System.object[]
)
Parameters
- state
- The desired state of the layer.
- layers
- The array of layer names or OptionalContentGroup objects.
See Also