DefaultBindingPropertyAttribute Constructors

Definition

Initializes a new instance of the DefaultBindingPropertyAttribute class.

Overloads

DefaultBindingPropertyAttribute()

Initializes a new instance of the DefaultBindingPropertyAttribute class using no parameters.

DefaultBindingPropertyAttribute(String)

Initializes a new instance of the DefaultBindingPropertyAttribute class using the specified property name.

DefaultBindingPropertyAttribute()

Source:
DefaultBindingPropertyAttribute.cs
Source:
DefaultBindingPropertyAttribute.cs
Source:
DefaultBindingPropertyAttribute.cs

Initializes a new instance of the DefaultBindingPropertyAttribute class using no parameters.

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

Remarks

The parameterless constructor sets the Name property to null.

See also

Applies to

DefaultBindingPropertyAttribute(String)

Source:
DefaultBindingPropertyAttribute.cs
Source:
DefaultBindingPropertyAttribute.cs
Source:
DefaultBindingPropertyAttribute.cs

Initializes a new instance of the DefaultBindingPropertyAttribute class using the specified property name.

public:
 DefaultBindingPropertyAttribute(System::String ^ name);
public DefaultBindingPropertyAttribute (string name);
public DefaultBindingPropertyAttribute (string? name);
new System.ComponentModel.DefaultBindingPropertyAttribute : string -> System.ComponentModel.DefaultBindingPropertyAttribute
Public Sub New (name As String)

Parameters

name
String

The name of the default binding property.

Remarks

This constructor sets the Name property to the value of the name parameter.

See also

Applies to