StringProperty.Subtype Property
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.
Qualifies this string property to give it a more specific classification.
public:
property System::String ^ Subtype { System::String ^ get(); void set(System::String ^ value); };
public string Subtype { get; set; }
public string Subtype { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] set; }
member this.Subtype : string with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.Subtype : string with get, set
Public Property Subtype As String
Property Value
The subtype.
- Attributes
Examples
The value of this property can be set to, say, "File", "Folder", "CarModel" etc. to specify if this is a file path, folder path, car model name etc.
Remarks
The value this field is set to, must be understood by the consumer of this field (normally a UI renderer).