AxParameterData 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 AxParameterData class using the specified name and type name.
Overloads
AxParameterData(ParameterInfo) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the AxParameterData class using the specified parameter information. |
AxParameterData(ParameterInfo, Boolean) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the AxParameterData class using the specified parameter information and whether to ignore by reference parameters. |
AxParameterData(String, String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the AxParameterData class using the specified name and type name. |
AxParameterData(String, Type) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the AxParameterData class using the specified name and type. |
AxParameterData(ParameterInfo)
Initializes a new instance of the AxParameterData class using the specified parameter information.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
AxParameterData(System::Reflection::ParameterInfo ^ info);
public AxParameterData (System.Reflection.ParameterInfo info);
new System.Windows.Forms.Design.AxParameterData : System.Reflection.ParameterInfo -> System.Windows.Forms.Design.AxParameterData
Public Sub New (info As ParameterInfo)
Parameters
- info
- ParameterInfo
A ParameterInfo indicating the parameter information to use.
See also
Applies to
AxParameterData(ParameterInfo, Boolean)
Initializes a new instance of the AxParameterData class using the specified parameter information and whether to ignore by reference parameters.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
AxParameterData(System::Reflection::ParameterInfo ^ info, bool ignoreByRefs);
public AxParameterData (System.Reflection.ParameterInfo info, bool ignoreByRefs);
new System.Windows.Forms.Design.AxParameterData : System.Reflection.ParameterInfo * bool -> System.Windows.Forms.Design.AxParameterData
Public Sub New (info As ParameterInfo, ignoreByRefs As Boolean)
Parameters
- info
- ParameterInfo
A ParameterInfo indicating the parameter information to use.
- ignoreByRefs
- Boolean
A value indicating whether to ignore parameters passed by reference.
See also
Applies to
AxParameterData(String, String)
Initializes a new instance of the AxParameterData class using the specified name and type name.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
AxParameterData(System::String ^ inname, System::String ^ typeName);
public AxParameterData (string inname, string typeName);
new System.Windows.Forms.Design.AxParameterData : string * string -> System.Windows.Forms.Design.AxParameterData
Public Sub New (inname As String, typeName As String)
Parameters
- inname
- String
The name of the parameter.
- typeName
- String
The name of the type of the parameter.
Applies to
AxParameterData(String, Type)
Initializes a new instance of the AxParameterData class using the specified name and type.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
AxParameterData(System::String ^ inname, Type ^ type);
public AxParameterData (string inname, Type type);
new System.Windows.Forms.Design.AxParameterData : string * Type -> System.Windows.Forms.Design.AxParameterData
Public Sub New (inname As String, type As Type)
Parameters
- inname
- String
The name of the parameter.
- type
- Type
The type of the parameter.