ComplexBindingPropertiesAttribute Constructors
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 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()
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)
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)
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
.