PropertyMap Constructors

Definition

Initializes a new instance of the PropertyMap class.

Overloads

PropertyMap()

Initializes a new instance of the PropertyMap class.

PropertyMap(Object)

Initializes a new instance of the PropertyMap class with the given source object.

PropertyMap()

Initializes a new instance of the PropertyMap class.

public:
 PropertyMap();
public PropertyMap ();
Public Sub New ()

See also

Applies to

PropertyMap(Object)

Initializes a new instance of the PropertyMap class with the given source object.

public:
 PropertyMap(System::Object ^ sourceObject);
public:
 PropertyMap(System::Object ^ source);
public PropertyMap (object sourceObject);
public PropertyMap (object source);
new System.Windows.Forms.Integration.PropertyMap : obj -> System.Windows.Forms.Integration.PropertyMap
new System.Windows.Forms.Integration.PropertyMap : obj -> System.Windows.Forms.Integration.PropertyMap
Public Sub New (sourceObject As Object)
Public Sub New (source As Object)

Parameters

sourceObjectsource
Object

The object which has the properties to be translated.

Remarks

source is the source of the properties which are translated by the PropertyMap. The properties which are mapped in the PropertyMap must exist on SourceObject.

PropertyTranslator delegates are called using the current property values on SourceObject.

See also

Applies to