HeroCard Costruttori

Definizione

Overload

HeroCard()

Inizializza una nuova istanza della classe HeroCard.

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

Inizializza una nuova istanza della classe HeroCard.

HeroCard()

Inizializza una nuova istanza della classe HeroCard.

public HeroCard ();
Public Sub New ()

Si applica a

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

Inizializza una nuova istanza della classe HeroCard.

public HeroCard (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.HeroCard : 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.HeroCard
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)

Parametri

title
String

Titolo della scheda.

subtitle
String

Sottotitolo della scheda.

text
String

Testo per la scheda.

images
IList<CardImage>

Matrice di immagini per la scheda.

buttons
IList<CardAction>

Set di azioni applicabili alla scheda corrente.

tap
CardAction

Questa azione verrà attivata quando l'utente tocca la scheda stessa.

Si applica a