BindInputElementAttribute Constructor
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.
Constructs an instance of BindInputElementAttribute.
public:
BindInputElementAttribute(System::String ^ type, System::String ^ suffix, System::String ^ valueAttribute, System::String ^ changeAttribute, bool isInvariantCulture, System::String ^ format);
public BindInputElementAttribute (string type, string suffix, string valueAttribute, string changeAttribute, bool isInvariantCulture, string format);
public BindInputElementAttribute (string? type, string? suffix, string? valueAttribute, string? changeAttribute, bool isInvariantCulture, string? format);
new Microsoft.AspNetCore.Components.BindInputElementAttribute : string * string * string * string * bool * string -> Microsoft.AspNetCore.Components.BindInputElementAttribute
Public Sub New (type As String, suffix As String, valueAttribute As String, changeAttribute As String, isInvariantCulture As Boolean, format As String)
Parameters
- type
- String
The value of the element's type
attribute.
- suffix
- String
The suffix value.
- valueAttribute
- String
The name of the value attribute to be bound.
- changeAttribute
- String
The name of an attribute that will register an associated change event.
- isInvariantCulture
- Boolean
Determines whether binding will use InvariantCulture or CurrentCulture.
- format
- String
An optional format to use when converting values.