UI2.Confirm(String, XdConfirmButtons) Method
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.
Displays a message box with buttons for input from a user.
public:
Microsoft::Office::Interop::InfoPath::SemiTrust::XdConfirmChoice Confirm(System::String ^ bstrPrompt, Microsoft::Office::Interop::InfoPath::SemiTrust::XdConfirmButtons lButtons);
public Microsoft.Office.Interop.InfoPath.SemiTrust.XdConfirmChoice Confirm (string bstrPrompt, Microsoft.Office.Interop.InfoPath.SemiTrust.XdConfirmButtons lButtons);
abstract member Confirm : string * Microsoft.Office.Interop.InfoPath.SemiTrust.XdConfirmButtons -> Microsoft.Office.Interop.InfoPath.SemiTrust.XdConfirmChoice
Public Function Confirm (bstrPrompt As String, lButtons As XdConfirmButtons) As XdConfirmChoice
Parameters
- bstrPrompt
- String
The text message to be displayed.
- lButtons
- XdConfirmButtons
Specifies the number and type of buttons to display. You may specify any of the values of the XdConfirmButtons enumeration.
Returns
An XdConfirmChoice enumeration.
Examples
In the following example, the Confirm method of the UIObject object is used to display a dialog box with Yes and No buttons:
thisXDocument.UI.<span class="label">Confirm</span>("Do you wish to continue?", XdConfirmButtons.xdYesNo);
Remarks
Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.