IComponentInitializer.InitializeNewComponent(IDictionary) Method
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 component using a set of recommended values.
public:
void InitializeNewComponent(System::Collections::IDictionary ^ defaultValues);
public void InitializeNewComponent (System.Collections.IDictionary defaultValues);
public void InitializeNewComponent (System.Collections.IDictionary? defaultValues);
abstract member InitializeNewComponent : System.Collections.IDictionary -> unit
Public Sub InitializeNewComponent (defaultValues As IDictionary)
Parameters
- defaultValues
- IDictionary
A dictionary of default property values, which are name/value pairs, with which to initialize the component's state.
Remarks
The InitializeNewComponent method is called after a new component is created. It is typically called by the toolbox item itself and is used to configure the component's default values.
This dictionary may be null
if no default values are specified. If the dictionary is null
, the component properties should be left in their implicit default states.