ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Framework Namespace / State Class / Activate Method
The state string identifier.
Example

In This Topic
    Activate Method (State)
    In This Topic
    Adds the specified state to the state set.
    Syntax
    Public Sub Activate( _
       ByVal stateID As String _
    ) 
    public void Activate( 
       string stateID
    )

    Parameters

    stateID
    The state string identifier.
    Example
    Activate/Deactivate a state - to modify a condition
    {
      // Define the condition in the DAML file based on the state 
      if (activate)
        FrameworkApplication.State.Activate("someState");
      else
        FrameworkApplication.State.Deactivate("someState");
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also