O365ConnectorCardTextInput 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.
Overloads
O365ConnectorCardTextInput() |
Initializes a new instance of the O365ConnectorCardTextInput class. |
O365ConnectorCardTextInput(String, String, Nullable<Boolean>, String, String, Nullable<Boolean>, Nullable<Double>) |
Initializes a new instance of the O365ConnectorCardTextInput class. |
O365ConnectorCardTextInput()
Initializes a new instance of the O365ConnectorCardTextInput class.
public O365ConnectorCardTextInput ();
Public Sub New ()
Applies to
O365ConnectorCardTextInput(String, String, Nullable<Boolean>, String, String, Nullable<Boolean>, Nullable<Double>)
Initializes a new instance of the O365ConnectorCardTextInput class.
public O365ConnectorCardTextInput (string type = default, string id = default, bool? isRequired = default, string title = default, string value = default, bool? isMultiline = default, double? maxLength = default);
new Microsoft.Bot.Schema.Teams.O365ConnectorCardTextInput : string * string * Nullable<bool> * string * string * Nullable<bool> * Nullable<double> -> Microsoft.Bot.Schema.Teams.O365ConnectorCardTextInput
Public Sub New (Optional type As String = Nothing, Optional id As String = Nothing, Optional isRequired As Nullable(Of Boolean) = Nothing, Optional title As String = Nothing, Optional value As String = Nothing, Optional isMultiline As Nullable(Of Boolean) = Nothing, Optional maxLength As Nullable(Of Double) = Nothing)
Parameters
- type
- String
Input type name. Possible values include: 'textInput', 'dateInput', 'multichoiceInput'.
- id
- String
Input Id. It must be unique per entire O365 connector card.
- title
- String
Input title that will be shown as the placeholder.
- value
- String
Default value for this input field.
Define if text input is allowed for multiple lines. Default value is false.