Gets or sets a value that indicates whether the Configuration Manager console should perform next-level expansion. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As RootNodeDescription
Dim value As Boolean

value = instance.ExpandImmediate

instance.ExpandImmediate = value

Syntax

Visual Basic
<DefaultValueAttribute(False)> _
<XmlAttributeAttribute("ExpandImmediate")> _
Public Property ExpandImmediate As Boolean
C#
[DefaultValueAttribute(false)] 
[XmlAttributeAttribute("ExpandImmediate")] 
public bool ExpandImmediate { get; set; }
C++
[DefaultValueAttribute(false)] 
[XmlAttributeAttribute(L"ExpandImmediate")] 
public:
property bool ExpandImmediate {
		bool get ();
		void set (bool value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public boolean get_ExpandImmediate ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_ExpandImmediate (boolean value)
JScript
DebuggerStepThroughAttribute 
public function get ExpandImmediate () : boolean

DebuggerStepThroughAttribute 
public function set ExpandImmediate (value : boolean)

Property Value

true if the console should perform next-level expansion; otherwise false.

Remarks

Your application uses this property to create node structures that are available for linking.


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