UIPropertyGroupDescription Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UIPropertyGroupDescription(String, String) |
Initializes a new instance of the UIPropertyGroupDescription class with the specified property name and display name. This constructor assumes that the type of data is String. |
UIPropertyGroupDescription(String, String, Type) |
Initializes a new instance of the UIPropertyGroupDescription class with the specified property name, display name and data type. |
UIPropertyGroupDescription(String, String)
Initializes a new instance of the UIPropertyGroupDescription class with the specified property name and display name. This constructor assumes that the type of data is String.
public:
UIPropertyGroupDescription(System::String ^ propertyName, System::String ^ displayName);
public:
UIPropertyGroupDescription(Platform::String ^ propertyName, Platform::String ^ displayName);
UIPropertyGroupDescription(std::wstring const & propertyName, std::wstring const & displayName);
public UIPropertyGroupDescription (string propertyName, string displayName);
new Microsoft.Management.UI.Internal.UIPropertyGroupDescription : string * string -> Microsoft.Management.UI.Internal.UIPropertyGroupDescription
Public Sub New (propertyName As String, displayName As String)
Parameters
- propertyName
- String
The name of the property that this instance describes.
- displayName
- String
The name displayed to users for this data.
Applies to
UIPropertyGroupDescription(String, String, Type)
Initializes a new instance of the UIPropertyGroupDescription class with the specified property name, display name and data type.
public:
UIPropertyGroupDescription(System::String ^ propertyName, System::String ^ displayName, Type ^ dataType);
public:
UIPropertyGroupDescription(Platform::String ^ propertyName, Platform::String ^ displayName, Platform::Type ^ dataType);
public UIPropertyGroupDescription (string propertyName, string displayName, Type dataType);
new Microsoft.Management.UI.Internal.UIPropertyGroupDescription : string * string * Type -> Microsoft.Management.UI.Internal.UIPropertyGroupDescription
Public Sub New (propertyName As String, displayName As String, dataType As Type)
Parameters
- propertyName
- String
The name of the property that this instance describes.
- displayName
- String
The name displayed to users for this data.
- dataType
- Type
The type of the data that this instance describes.