InstalledToolboxItemInfo Constructor
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.
Initializes a new instance of the InstalledToolboxItemInfo class.
public:
InstalledToolboxItemInfo(System::String ^ typeName, System::Reflection::AssemblyName ^ assemblyName, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::String ^>> ^ customProperties);
public InstalledToolboxItemInfo (string typeName, System.Reflection.AssemblyName assemblyName, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>> customProperties);
new Microsoft.VisualStudio.Shell.InstalledToolboxItemInfo : string * System.Reflection.AssemblyName * seq<System.Collections.Generic.KeyValuePair<string, string>> -> Microsoft.VisualStudio.Shell.InstalledToolboxItemInfo
Public Sub New (typeName As String, assemblyName As AssemblyName, customProperties As IEnumerable(Of KeyValuePair(Of String, String)))
Parameters
- typeName
- String
Full hierarchical type name of the item.
- assemblyName
- AssemblyName
Assembly name of the item.
- customProperties
- IEnumerable<KeyValuePair<String,String>>
Strings to display in the dialog’s “custom” columns.
Exceptions
The typeName
or assemblyName
parameters are null.
Remarks
The customProperties
parameter can be null.