UI2.Alert 方法
在 Microsoft Office InfoPath 表單中顯示含有自訂文字訊息的訊息方塊。
**命名空間:**Microsoft.Office.Interop.InfoPath
**組件:**Microsoft.Office.Interop.InfoPath (於 microsoft.office.interop.infopath.dll 中)
語法
'宣告
<DispIdAttribute(1)> _
Sub Alert ( _
<InAttribute> bstrAlertString As String _
)
'用途
Dim instance As UI2
Dim bstrAlertString As String
instance.Alert(bstrAlertString)
[DispIdAttribute(1)]
void Alert (
[InAttribute] string bstrAlertString
)
參數
- bstrAlertString
要顯示的文字。
備註
Alert 方法會顯示使用資訊圖示及 [確定] 按鈕的簡單訊息方塊。只有訊息方塊中的文字才可以自訂。
注意
在 Visual C# 程式碼中,可以使用標準 字元,將歸位字元插入自訂訊息的文字中。
範例
在下列範例中,使用 UIObject 物件的 Alert 方法來顯示訊息方塊:
thisXDocument.UI.Alert("Custom message text goes here.");