Share via


BasicCard コンストラクター

定義

オーバーロード

BasicCard()

BasicCard クラスの新しいインスタンスを初期化します。

BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction)

BasicCard クラスの新しいインスタンスを初期化します。

BasicCard()

BasicCard クラスの新しいインスタンスを初期化します。

public BasicCard ();
Public Sub New ()

適用対象

BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction)

BasicCard クラスの新しいインスタンスを初期化します。

public BasicCard (string title = default, string subtitle = default, string text = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardImage> images = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> buttons = default, Microsoft.Bot.Schema.CardAction tap = default);
new Microsoft.Bot.Schema.BasicCard : string * string * string * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardImage> * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> * Microsoft.Bot.Schema.CardAction -> Microsoft.Bot.Schema.BasicCard
Public Sub New (Optional title As String = Nothing, Optional subtitle As String = Nothing, Optional text As String = Nothing, Optional images As IList(Of CardImage) = Nothing, Optional buttons As IList(Of CardAction) = Nothing, Optional tap As CardAction = Nothing)

パラメーター

title
String

カードのタイトル。

subtitle
String

カードのサブタイトル。

text
String

カードのテキスト。

images
IList<CardImage>

カードの画像の配列。

buttons
IList<CardAction>

現在のカードに適用できる一連のアクション。

tap
CardAction

このアクションは、ユーザーがカード自体をタップするとアクティブになります。

適用対象