共用方式為


PromptDialog.PromptDouble 建構函式

定義

多載

PromptDialog.PromptDouble(PromptOptions<Double>, Nullable<Double>, Nullable<Double>)

提示雙精度浮點對話方塊的建構函式。

PromptDialog.PromptDouble(String, String, Int32, String, Nullable<Double>, Nullable<Double>)

提示雙精度浮點對話方塊的建構函式。

PromptDialog.PromptDouble(PromptOptions<Double>, Nullable<Double>, Nullable<Double>)

來源:
PromptDialog.cs

提示雙精度浮點對話方塊的建構函式。

public PromptDouble (Microsoft.Bot.Builder.Dialogs.PromptOptions<double> promptOptions, double? min = default, double? max = default);
new Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble : Microsoft.Bot.Builder.Dialogs.PromptOptions<double> * Nullable<double> * Nullable<double> -> Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble
Public Sub New (promptOptions As PromptOptions(Of Double), Optional min As Nullable(Of Double) = Nothing, Optional max As Nullable(Of Double) = Nothing)

參數

promptOptions
PromptOptions<Double>

提示選項。

min
Nullable<Double>

Minimun 值。

max
Nullable<Double>

最大值。

適用於

PromptDialog.PromptDouble(String, String, Int32, String, Nullable<Double>, Nullable<Double>)

來源:
PromptDialog.cs

提示雙精度浮點對話方塊的建構函式。

public PromptDouble (string prompt, string retry, int attempts, string speak = default, double? min = default, double? max = default);
new Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble : string * string * int * string * Nullable<double> * Nullable<double> -> Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble
Public Sub New (prompt As String, retry As String, attempts As Integer, Optional speak As String = Nothing, Optional min As Nullable(Of Double) = Nothing, Optional max As Nullable(Of Double) = Nothing)

參數

prompt
String

提示。

retry
String

重試時要顯示的內容。

attempts
Int32

嘗試次數上限。

speak
String

文字轉換語音) 的聲控標籤 (SSML 標記

min
Nullable<Double>

Minimun 值。

max
Nullable<Double>

最大值。

適用於