Gets or sets an ActionDescription.SelectionType enumeration value that represents the supported selection mode for the action. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As ActionDescription
Dim value As SelectionType

value = instance.SupportedSelectionMode

instance.SupportedSelectionMode = value

Syntax

Visual Basic
<XmlAttributeAttribute("SelectionMode")> _
<DefaultValueAttribute(SelectionType.Single)> _
Public Property SupportedSelectionMode As SelectionType
C#
[XmlAttributeAttribute("SelectionMode")] 
[DefaultValueAttribute(SelectionType.Single)] 
public SelectionType SupportedSelectionMode { get; set; }
C++
[XmlAttributeAttribute(L"SelectionMode")] 
[DefaultValueAttribute(SelectionType::Single)] 
public:
property SelectionType SupportedSelectionMode {
		SelectionType get ();
		void set (SelectionType value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public SelectionType get_SupportedSelectionMode ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_SupportedSelectionMode (SelectionType value)
JScript
DebuggerStepThroughAttribute 
public function get SupportedSelectionMode () : SelectionType

DebuggerStepThroughAttribute 
public function set SupportedSelectionMode (value : SelectionType)

Property Value

ActionDescription.SelectionType enumeration value.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also