1037 lines
57 KiB
XML
1037 lines
57 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Type Name="ToolboxItem" FullName="System.Drawing.Design.ToolboxItem">
|
||
|
<TypeSignature Language="C#" Maintainer="auto" Value="public class ToolboxItem : System.Runtime.Serialization.ISerializable" />
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyName>System.Drawing</AssemblyName>
|
||
|
<AssemblyPublicKey>[00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 07 D1 FA 57 C4 AE D9 F0 A3 2E 84 AA 0F AE FD 0D E9 E8 FD 6A EC 8F 87 FB 03 76 6C 83 4C 99 92 1E B2 3B E7 9A D9 D5 DC C1 DD 9A D2 36 13 21 02 90 0B 72 3C F9 80 95 7F C4 E1 77 10 8F C6 07 77 4F 29 E8 32 0E 92 EA 05 EC E4 E8 21 C0 A5 EF E8 F1 64 5C 4C 0C 93 C1 AB 99 28 5D 62 2C AA 65 2C 1D FA D6 3D 74 5D 6F 2D E5 F1 7E 5E AF 0F C4 96 3D 26 1C 8A 12 43 65 18 20 6D C0 93 34 4D 5A D2 93]</AssemblyPublicKey>
|
||
|
<AssemblyVersion>1.0.3300.0</AssemblyVersion>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||
|
<Base>
|
||
|
<BaseTypeName>System.Object</BaseTypeName>
|
||
|
</Base>
|
||
|
<Interfaces>
|
||
|
<Interface>
|
||
|
<InterfaceName>System.Runtime.Serialization.ISerializable</InterfaceName>
|
||
|
</Interface>
|
||
|
</Interfaces>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>
|
||
|
<see cref="T:System.Drawing.Design.ToolboxItem" /> is a base class for toolbox items that can be displayed in the toolbox of a design-time environment. A toolbox item typically represents a component to create when invoked on a design mode document. The <see cref="T:System.Drawing.Design.ToolboxItem" /> class provides the methods and properties needed to provide the toolbox with the display properties for the toolbox item, to create a component or components when used, and to serialize and deserialize itself for persistence within the toolbox database.</para>
|
||
|
<para>An instance of the <see cref="T:System.Drawing.Design.ToolboxItem" /> class can be configured with a name, bitmap, and type to create, without creating a class that derives from <see cref="T:System.Drawing.Design.ToolboxItem" />. The <see cref="T:System.Drawing.Design.ToolboxItem" /> class also provides a base class for custom toolbox item implementations. A custom <see cref="T:System.Drawing.Design.ToolboxItem" /> can create multiple components. To implement a custom toolbox item, you must derive from <see cref="T:System.Drawing.Design.ToolboxItem" /> and override the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" />, <see cref="M:System.Drawing.Design.ToolboxItem.Serialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />, and <see cref="M:System.Drawing.Design.ToolboxItem.Deserialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> methods.</para>
|
||
|
<para>The following properties and methods must be configured for a <see cref="T:System.Drawing.Design.ToolboxItem" /> to function correctly: </para>
|
||
|
<list type="bullet">
|
||
|
<item>
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.DisplayName" /> property specifies the label for the toolbox item when displayed in a toolbox.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.TypeName" /> property specifies the fully qualified name of the type of the component that the item creates. If a derived class creates multiple components, the <see cref="P:System.Drawing.Design.ToolboxItem.TypeName" /> property may or may not be used, contingent on whether a <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method override depends on the value of this property.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.AssemblyName" /> property specifies the assembly that contains the type of a component that the item creates.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.Bitmap" /> property optionally specifies a bitmap image to display next to the display name for the toolbox item in the toolbox.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.Filter" /> property optionally contains any <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> objects that determine whether the toolbox item can be used on a particular component.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method returns the component instance or instances to insert where this tool is used.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.Serialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method saves the toolbox item to a specified <see cref="T:System.Runtime.Serialization.SerializationInfo" />.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.Deserialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method configures the toolbox item from the state information contained in the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" />.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.Initialize(System.Type)" /> method configures the toolbox item to create the specified type of component, if the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method has not been overridden to behave differently.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.Locked" /> property indicates whether the properties of the toolbox item can be changed. A toolbox item is typically locked after it is added to a toolbox.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.Lock" /> method locks a toolbox item.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.CheckUnlocked" /> method throws an exception if the <see cref="P:System.Drawing.Design.ToolboxItem.Locked" /> property is true.</para>
|
||
|
</item>
|
||
|
</list>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Provides a base implementation of a toolbox item.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<Members>
|
||
|
<Member MemberName=".ctor">
|
||
|
<MemberSignature Language="C#" Value="public ToolboxItem ();" />
|
||
|
<MemberType>Constructor</MemberType>
|
||
|
<ReturnValue />
|
||
|
<Parameters />
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Initializes a new instance of the <see cref="T:System.Drawing.Design.ToolboxItem" /> class.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName=".ctor">
|
||
|
<MemberSignature Language="C#" Value="public ToolboxItem (Type toolType);" />
|
||
|
<MemberType>Constructor</MemberType>
|
||
|
<ReturnValue />
|
||
|
<Parameters>
|
||
|
<Parameter Name="toolType" Type="System.Type" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Initializes a new instance of the <see cref="T:System.Drawing.Design.ToolboxItem" /> class that creates the specified type of component.</para>
|
||
|
</summary>
|
||
|
<param name="toolType">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The type of <see cref="T:System.ComponentModel.IComponent" /> that the toolbox item creates. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="AssemblyName">
|
||
|
<MemberSignature Language="C#" Value="public System.Reflection.AssemblyName AssemblyName { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Reflection.AssemblyName</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<value>To be added: an object of type 'Reflection.AssemblyName'</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.AssemblyName" /> property specifies the assembly that contains the types of the components to create.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets the name of the assembly that contains the type or types that the toolbox item creates.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Bitmap">
|
||
|
<MemberSignature Language="C#" Value="public System.Drawing.Bitmap Bitmap { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Drawing.Bitmap</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<value>To be added: an object of type 'Drawing.Bitmap'</value>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets a bitmap to represent the toolbox item in the toolbox.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="CheckUnlocked">
|
||
|
<MemberSignature Language="C#" Value="protected void CheckUnlocked ();" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters />
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.CheckUnlocked" /> method throws an <see cref="T:System.InvalidOperationException" /> if the <see cref="P:System.Drawing.Design.ToolboxItem.Locked" /> property of the <see cref="T:System.Drawing.Design.ToolboxItem" /> is set to true.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Throws an exception if the toolbox item is currently locked.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Company">
|
||
|
<MemberSignature Language="C#" Value="public string Company { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.String</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>To be added.</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets the company name for this <see cref="T:System.Drawing.Design.ToolboxItem" />.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="ComponentsCreated">
|
||
|
<MemberSignature Language="C#" Value="public event System.Drawing.Design.ToolboxComponentsCreatedEventHandler ComponentsCreated;" />
|
||
|
<MemberType>Event</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Drawing.Design.ToolboxComponentsCreatedEventHandler</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="E:System.Drawing.Design.ToolboxItem.ComponentsCreated" /> event is raised each time components of this toolbox item are created. </para>
|
||
|
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Occurs immediately after components are created.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="ComponentsCreating">
|
||
|
<MemberSignature Language="C#" Value="public event System.Drawing.Design.ToolboxComponentsCreatingEventHandler ComponentsCreating;" />
|
||
|
<MemberType>Event</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Drawing.Design.ToolboxComponentsCreatingEventHandler</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="E:System.Drawing.Design.ToolboxItem.ComponentsCreating" /> event is raised each time components of the toolbox item are about to be created. </para>
|
||
|
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Occurs when components are about to be created.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="ComponentType">
|
||
|
<MemberSignature Language="C#" Value="public virtual string ComponentType { get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.String</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>To be added.</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets the component type for this <see cref="T:System.Drawing.Design.ToolboxItem" />.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="CreateComponents">
|
||
|
<MemberSignature Language="C#" Value="public System.ComponentModel.IComponent[] CreateComponents ();" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.ComponentModel.IComponent[]</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters />
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponents" /> method calls the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method to retrieve an array of type <see cref="T:System.ComponentModel.IComponent" /> containing the components to create.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Creates the components that the toolbox item is configured to create.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>An array of created <see cref="T:System.ComponentModel.IComponent" /> objects.</para>
|
||
|
</returns>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="CreateComponents">
|
||
|
<MemberSignature Language="C#" Value="public System.ComponentModel.IComponent[] CreateComponents (System.ComponentModel.Design.IDesignerHost host);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.ComponentModel.IComponent[]</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="host" Type="System.ComponentModel.Design.IDesignerHost" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponents(System.ComponentModel.Design.IDesignerHost)" /> method calls the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method to retrieve an array of type <see cref="T:System.ComponentModel.IComponent" /> containing the components to create.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Creates the components that the toolbox item is configured to create, using the specified designer host.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>An array of created <see cref="T:System.ComponentModel.IComponent" /> objects.</para>
|
||
|
</returns>
|
||
|
<param name="host">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> to use when creating the components. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="CreateComponents">
|
||
|
<MemberSignature Language="C#" Value="public System.ComponentModel.IComponent[] CreateComponents (System.ComponentModel.Design.IDesignerHost host, System.Collections.IDictionary defaultValues);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.ComponentModel.IComponent[]</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="host" Type="System.ComponentModel.Design.IDesignerHost" />
|
||
|
<Parameter Name="defaultValues" Type="System.Collections.IDictionary" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponents(System.ComponentModel.Design.IDesignerHost,System.Collections.IDictionary)" /> method calls the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost,System.Collections.IDictionary)" /> method to retrieve an array of type <see cref="T:System.ComponentModel.IComponent" /> containing the components to create.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Creates the components that the toolbox item is configured to create, using the specified designer host and default values.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>An array of created <see cref="T:System.ComponentModel.IComponent" /> objects.</para>
|
||
|
</returns>
|
||
|
<param name="host">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> to use when creating the components.</param>
|
||
|
<param name="defaultValues">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />A dictionary of property name/value pairs of default values with which to initialize the component.</param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="CreateComponentsCore">
|
||
|
<MemberSignature Language="C#" Value="protected virtual System.ComponentModel.IComponent[] CreateComponentsCore (System.ComponentModel.Design.IDesignerHost host);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.ComponentModel.IComponent[]</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="host" Type="System.ComponentModel.Design.IDesignerHost" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>If <paramref name="host" /> is not null, the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method adds the new components to the designer.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Creates a component or an array of components when the toolbox item is invoked.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>An array of created <see cref="T:System.ComponentModel.IComponent" /> objects.</para>
|
||
|
</returns>
|
||
|
<param name="host">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> to host the toolbox item. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="CreateComponentsCore">
|
||
|
<MemberSignature Language="C#" Value="protected virtual System.ComponentModel.IComponent[] CreateComponentsCore (System.ComponentModel.Design.IDesignerHost host, System.Collections.IDictionary defaultValues);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.ComponentModel.IComponent[]</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="host" Type="System.ComponentModel.Design.IDesignerHost" />
|
||
|
<Parameter Name="defaultValues" Type="System.Collections.IDictionary" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>If <paramref name="host" /> is not null, the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost,System.Collections.IDictionary)" /> method adds the new components to the designer.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Creates an array of components when the toolbox item is invoked.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>An array of created <see cref="T:System.ComponentModel.IComponent" /> objects.</para>
|
||
|
</returns>
|
||
|
<param name="host">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The designer host to use when creating components.</param>
|
||
|
<param name="defaultValues">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />A dictionary of property name/value pairs of default values with which to initialize the component.</param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="DependentAssemblies">
|
||
|
<MemberSignature Language="C#" Value="public System.Reflection.AssemblyName[] DependentAssemblies { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Reflection.AssemblyName[]</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The assembly name describes the assembly information needed to load the toolbox item's type.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets the <see cref="T:System.Reflection.AssemblyName" /> for the toolbox item.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="Description">
|
||
|
<MemberSignature Language="C#" Value="public string Description { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.String</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>To be added.</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets the description for this <see cref="T:System.Drawing.Design.ToolboxItem" />.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="Deserialize">
|
||
|
<MemberSignature Language="C#" Value="protected virtual void Deserialize (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
|
||
|
<Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Loads the state of the toolbox item from the specified serialization information object.</para>
|
||
|
</summary>
|
||
|
<param name="info">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to load from. </param>
|
||
|
<param name="context">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the stream characteristics. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="DisplayName">
|
||
|
<MemberSignature Language="C#" Value="public string DisplayName { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.String</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<value>To be added: an object of type 'string'</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>This <see cref="P:System.Drawing.Design.ToolboxItem.DisplayName" /> property indicates the string that is displayed for the toolbox item in the toolbox.</para>
|
||
|
<para>By default, the base <see cref="T:System.Drawing.Design.ToolboxItem" /> class sets its <see cref="P:System.Drawing.Design.ToolboxItem.DisplayName" /> property to a short form of the fully qualified type name specified by the <see cref="P:System.Drawing.Design.ToolboxItem.TypeName" /> property.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets the display name for the toolbox item.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Equals">
|
||
|
<MemberSignature Language="C#" Value="public override bool Equals (object obj);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Boolean</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="obj" Type="System.Object" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Determines whether two <see cref="T:System.Drawing.Design.ToolboxItem" /> instances are equal.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>true if the specified <see cref="T:System.Drawing.Design.ToolboxItem" /> is equal to the current <see cref="T:System.Drawing.Design.ToolboxItem" />; otherwise, false.</para>
|
||
|
</returns>
|
||
|
<param name="obj">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Design.ToolboxItem" /> to compare with the current <see cref="T:System.Drawing.Design.ToolboxItem" />.</param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Filter">
|
||
|
<MemberSignature Language="C#" Value="public System.Collections.ICollection Filter { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Collections.ICollection</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<value>To be added: an object of type 'Collections.ICollection'</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.Filter" /> property collection contains <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> objects that specify the policy that the design-time environment uses to determine whether a toolbox item can be used on the destination component.</para>
|
||
|
<para>For more information on restricting the scope in which a <see cref="T:System.Drawing.Design.ToolboxItem" /> can be used, see the documentation for the <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> class.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets the filter that determines whether the toolbox item can be used on a destination component.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="FilterPropertyValue">
|
||
|
<MemberSignature Language="C#" Value="protected virtual object FilterPropertyValue (string propertyName, object value);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Object</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="propertyName" Type="System.String" />
|
||
|
<Parameter Name="value" Type="System.Object" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.FilterPropertyValue(System.String,System.Object)" /> method enables a property to always clone values, or to provide a default value when none exists.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Filters a property value before returning it.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>A filtered property value.</para>
|
||
|
</returns>
|
||
|
<param name="propertyName">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The name of the property to filter.</param>
|
||
|
<param name="value">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The value against which to filter the property.</param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="GetHashCode">
|
||
|
<MemberSignature Language="C#" Value="public override int GetHashCode ();" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Int32</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters />
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Returns the hash code for this instance.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>A hash code for the current <see cref="T:System.Drawing.Design.ToolboxItem" />.</para>
|
||
|
</returns>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="GetType">
|
||
|
<MemberSignature Language="C#" Value="public Type GetType (System.ComponentModel.Design.IDesignerHost host);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Type</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="host" Type="System.ComponentModel.Design.IDesignerHost" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The designer host is used to access an implementation of the <see cref="T:System.ComponentModel.Design.ITypeResolutionService" /> interface. However, the loaded type is not added to the list of references in the designer host.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Enables access to the type associated with the toolbox item.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The type associated with the toolbox item.</para>
|
||
|
</returns>
|
||
|
<param name="host">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The designer host to query for <see cref="T:System.ComponentModel.Design.ITypeResolutionService" />.</param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="GetType">
|
||
|
<MemberSignature Language="C#" Value="protected virtual Type GetType (System.ComponentModel.Design.IDesignerHost host, System.Reflection.AssemblyName assemblyName, string typeName, bool reference);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Type</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="host" Type="System.ComponentModel.Design.IDesignerHost" />
|
||
|
<Parameter Name="assemblyName" Type="System.Reflection.AssemblyName" />
|
||
|
<Parameter Name="typeName" Type="System.String" />
|
||
|
<Parameter Name="reference" Type="System.Boolean" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Creates an instance of the specified type, optionally using a specified designer host and assembly name.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>An instance of the specified type, if it can be located.</para>
|
||
|
</returns>
|
||
|
<param name="host">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> for the current document. This can be null. </param>
|
||
|
<param name="assemblyName">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Reflection.AssemblyName" /> that indicates the assembly that contains the type to load. This can be null. </param>
|
||
|
<param name="typeName">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The name of the type to create an instance of. </param>
|
||
|
<param name="reference">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />A value indicating whether or not to add a reference to the assembly that contains the specified type to the designer host's set of references. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Initialize">
|
||
|
<MemberSignature Language="C#" Value="public virtual void Initialize (Type type);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="type" Type="System.Type" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.Initialize(System.Type)" /> method configures the toolbox item to create the specified type, if the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method has not been overridden to behave differently.</para>
|
||
|
<para>This method performs the following operations: </para>
|
||
|
<list type="bullet">
|
||
|
<item>
|
||
|
<para>Sets the <see cref="P:System.Drawing.Design.ToolboxItem.AssemblyName" /> property to an <see cref="T:System.Reflection.AssemblyName" /> indicating the assembly of the specified type.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>Sets the <see cref="P:System.Drawing.Design.ToolboxItem.DisplayName" /> property to a short type name based on the name of the specified type.</para>
|
||
|
</item>
|
||
|
<item>
|
||
|
<para>Adds any <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> attributes found on the specified type to the <see cref="P:System.Drawing.Design.ToolboxItem.Filter" /> property collection.</para>
|
||
|
</item>
|
||
|
</list>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Initializes the current toolbox item with the specified type to create.</para>
|
||
|
</summary>
|
||
|
<param name="type">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Type" /> that the toolbox item creates. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="IsTransient">
|
||
|
<MemberSignature Language="C#" Value="public bool IsTransient { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Boolean</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.IsTransient" /> property defaults to false.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets a value indicating whether the toolbox item is transient.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="Lock">
|
||
|
<MemberSignature Language="C#" Value="public virtual void Lock ();" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters />
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The properties of a toolbox item cannot be changed when it is locked.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Locks the toolbox item and prevents changes to its properties.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Locked">
|
||
|
<MemberSignature Language="C#" Value="public virtual bool Locked { get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Boolean</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added: an object of type 'bool'</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>When a <see cref="T:System.Drawing.Design.ToolboxItem" /> is locked, you cannot adjust its properties.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets a value indicating whether the <see cref="T:System.Drawing.Design.ToolboxItem" /> is currently locked.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="OnComponentsCreated">
|
||
|
<MemberSignature Language="C#" Value="protected virtual void OnComponentsCreated (System.Drawing.Design.ToolboxComponentsCreatedEventArgs args);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="args" Type="System.Drawing.Design.ToolboxComponentsCreatedEventArgs" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.OnComponentsCreated(System.Drawing.Design.ToolboxComponentsCreatedEventArgs)" /> method raises the <see cref="E:System.Drawing.Design.ToolboxItem.ComponentsCreated" /> event. This method is called after a toolbox item is invoked to create components and the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method has returned.</para>
|
||
|
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.OnComponentsCreated(System.Drawing.Design.ToolboxComponentsCreatedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Raises the <see cref="E:System.Drawing.Design.ToolboxItem.ComponentsCreated" /> event.</para>
|
||
|
</summary>
|
||
|
<param name="args">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Design.ToolboxComponentsCreatedEventArgs" /> that provides data for the event. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="OnComponentsCreating">
|
||
|
<MemberSignature Language="C#" Value="protected virtual void OnComponentsCreating (System.Drawing.Design.ToolboxComponentsCreatingEventArgs args);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="args" Type="System.Drawing.Design.ToolboxComponentsCreatingEventArgs" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.OnComponentsCreating(System.Drawing.Design.ToolboxComponentsCreatingEventArgs)" /> method raises the <see cref="E:System.Drawing.Design.ToolboxItem.ComponentsCreating" /> event. This method is called after a toolbox item is invoked to create components, just before the <see cref="M:System.Drawing.Design.ToolboxItem.CreateComponentsCore(System.ComponentModel.Design.IDesignerHost)" /> method is called.</para>
|
||
|
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.OnComponentsCreating(System.Drawing.Design.ToolboxComponentsCreatingEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Raises the <see cref="E:System.Drawing.Design.ToolboxItem.ComponentsCreating" /> event.</para>
|
||
|
</summary>
|
||
|
<param name="args">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Design.ToolboxComponentsCreatingEventArgs" /> that provides data for the event. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Properties">
|
||
|
<MemberSignature Language="C#" Value="public System.Collections.IDictionary Properties { get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Collections.IDictionary</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.Properties" /> property dictionary becomes read-only after the toolbox item has been locked.</para>
|
||
|
<para>Values in the properties dictionary are validated through the <see cref="M:System.Drawing.Design.ToolboxItem.ValidatePropertyValue(System.String,System.Object)" /> method, and default values are obtained from the <see cref="Overload:System.ComponentModel.TypeDescriptor.GetDefaultProperty" /> method.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets a dictionary of properties.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="Serialize">
|
||
|
<MemberSignature Language="C#" Value="protected virtual void Serialize (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
|
||
|
<Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Saves the state of the toolbox item to the specified serialization information object.</para>
|
||
|
</summary>
|
||
|
<param name="info">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to save to. </param>
|
||
|
<param name="context">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the stream characteristics. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="System.Runtime.Serialization.ISerializable.GetObjectData">
|
||
|
<MemberSignature Language="C#" Value="void ISerializable.GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
|
||
|
<Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Drawing.Design.ToolboxItem" /> instance is cast to an <see cref="T:System.Runtime.Serialization.ISerializable" /> interface.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>For a description of this member, see the <see cref="M:System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method.</para>
|
||
|
</summary>
|
||
|
<param name="info">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
|
||
|
<param name="context">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext" />) for this serialization.</param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="ToString">
|
||
|
<MemberSignature Language="C#" Value="public override string ToString ();" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.String</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters />
|
||
|
<Docs>
|
||
|
<remarks>To be added</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Drawing.Design.ToolboxItem" />.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Drawing.Design.ToolboxItem" />.</para>
|
||
|
</returns>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="TypeName">
|
||
|
<MemberSignature Language="C#" Value="public string TypeName { set; get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.String</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<value>To be added: an object of type 'string'</value>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="P:System.Drawing.Design.ToolboxItem.TypeName" /> property specifies the fully qualified type name of the type of component to create.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets or sets the fully qualified name of the type of <see cref="T:System.ComponentModel.IComponent" /> that the toolbox item creates when invoked.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="ValidatePropertyType">
|
||
|
<MemberSignature Language="C#" Value="protected void ValidatePropertyType (string propertyName, object value, Type expectedType, bool allowNull);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="propertyName" Type="System.String" />
|
||
|
<Parameter Name="value" Type="System.Object" />
|
||
|
<Parameter Name="expectedType" Type="System.Type" />
|
||
|
<Parameter Name="allowNull" Type="System.Boolean" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.ValidatePropertyType(System.String,System.Object,System.Type,System.Boolean)" /> method is called as a helper method to the <see cref="M:System.Drawing.Design.ToolboxItem.ValidatePropertyValue(System.String,System.Object)" /> method.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Validates that an object is of a given type.</para>
|
||
|
</summary>
|
||
|
<param name="propertyName">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The name of the property to validate.</param>
|
||
|
<param name="value">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />Optional value against which to validate.</param>
|
||
|
<param name="expectedType">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The expected type of the property.</param>
|
||
|
<param name="allowNull">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />true to allow null; otherwise, false.</param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="ValidatePropertyValue">
|
||
|
<MemberSignature Language="C#" Value="protected virtual object ValidatePropertyValue (string propertyName, object value);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Object</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="propertyName" Type="System.String" />
|
||
|
<Parameter Name="value" Type="System.Object" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Drawing.Design.ToolboxItem.ValidatePropertyValue(System.String,System.Object)" /> method is called whenever a value is set in the property dictionary. With this method, you can change the value of an object before committing it, or reject it by throwing an exception.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Validates a property before it is assigned to the property dictionary.</para>
|
||
|
</summary>
|
||
|
<returns>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The value used to perform validation.</para>
|
||
|
</returns>
|
||
|
<param name="propertyName">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The name of the property to validate.</param>
|
||
|
<param name="value">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The value against which to validate.</param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="Version">
|
||
|
<MemberSignature Language="C#" Value="public virtual string Version { get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.String</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Docs>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>To be added.</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Gets the version for this <see cref="T:System.Drawing.Design.ToolboxItem" />.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
</Members>
|
||
|
</Type>
|