IComponentInitializer.InitializeNewComponent(IDictionary) Method

Definition

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.

Applies to

See also