CreationTool.CreationType Property
Gets or sets the type of object this tool should create.
Namespace: Microsoft.Windows.Design.Interaction
Assembly: Microsoft.Windows.Design.Extensibility (in Microsoft.Windows.Design.Extensibility.dll)
Syntax
'Declaration
Public Property CreationType As Type
'Usage
Dim instance As CreationTool
Dim value As Type
value = instance.CreationType
instance.CreationType = value
public Type CreationType { get; set; }
public:
property Type^ CreationType {
Type^ get ();
void set (Type^ value);
}
public function get CreationType () : Type
public function set CreationType (value : Type)
Property Value
Type: System.Type
A Type object representing the type of object this tool should create. For example, if this tool is to create a button, this property should be typeof(Button).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Interaction Namespace