ComplexBindingPropertiesAttribute Constructors

Definition

Initializes a new instance of the ComplexBindingPropertiesAttribute class.

Overloads

ComplexBindingPropertiesAttribute()

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

ComplexBindingPropertiesAttribute(String)

Initializes a new instance of the ComplexBindingPropertiesAttribute class using the specified data source.

ComplexBindingPropertiesAttribute(String, String)

Initializes a new instance of the ComplexBindingPropertiesAttribute class using the specified data source and data member.

ComplexBindingPropertiesAttribute()

Source:
ComplexBindingPropertiesAttribute.cs
Source:
ComplexBindingPropertiesAttribute.cs
Source:
ComplexBindingPropertiesAttribute.cs

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

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

Remarks

The parameterless constructor sets the DataSource and DataMember properties to null.

See also

Applies to

ComplexBindingPropertiesAttribute(String)

Source:
ComplexBindingPropertiesAttribute.cs
Source:
ComplexBindingPropertiesAttribute.cs
Source:
ComplexBindingPropertiesAttribute.cs

Initializes a new instance of the ComplexBindingPropertiesAttribute class using the specified data source.

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

Parameters

dataSource
String

The name of the property to be used as the data source.

Remarks

This constructor sets the DataSource property to dataSource and the DataMember property to null.

See also

Applies to

ComplexBindingPropertiesAttribute(String, String)

Source:
ComplexBindingPropertiesAttribute.cs
Source:
ComplexBindingPropertiesAttribute.cs
Source:
ComplexBindingPropertiesAttribute.cs

Initializes a new instance of the ComplexBindingPropertiesAttribute class using the specified data source and data member.

public:
 ComplexBindingPropertiesAttribute(System::String ^ dataSource, System::String ^ dataMember);
public ComplexBindingPropertiesAttribute (string dataSource, string dataMember);
public ComplexBindingPropertiesAttribute (string? dataSource, string? dataMember);
new System.ComponentModel.ComplexBindingPropertiesAttribute : string * string -> System.ComponentModel.ComplexBindingPropertiesAttribute
Public Sub New (dataSource As String, dataMember As String)

Parameters

dataSource
String

The name of the property to be used as the data source.

dataMember
String

The name of the property to be used as the source for data.

Remarks

This constructor sets the DataSource property to dataSource and the DataMember property to dataMember.

See also

Applies to