Gets or sets the data type for the value of the property. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As ManagementClassPropertyDescription
Dim value As TypeOfData

value = instance.DisplayedDataType

instance.DisplayedDataType = value

Syntax

Visual Basic
<XmlAttributeAttribute("Type")> _
<DefaultValueAttribute(TypeOfData.String)> _
Public Property DisplayedDataType As TypeOfData
C#
[XmlAttributeAttribute("Type")] 
[DefaultValueAttribute(TypeOfData.String)] 
public TypeOfData DisplayedDataType { get; set; }
C++
[XmlAttributeAttribute(L"Type")] 
[DefaultValueAttribute(TypeOfData::String)] 
public:
property TypeOfData DisplayedDataType {
		TypeOfData get ();
		void set (TypeOfData value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public TypeOfData get_DisplayedDataType ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_DisplayedDataType (TypeOfData value)
JScript
DebuggerStepThroughAttribute 
public function get DisplayedDataType () : TypeOfData

DebuggerStepThroughAttribute 
public function set DisplayedDataType (value : TypeOfData)

Property Value

ManagementClassPropertyDescription.TypeOfData enumeration value.

Remarks

Your application uses this property to sort items when the user selects columns on which to sort.


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