![]() |
pCon.planner Plugin SDK
Version 8.8.1
|
Interface for custom message boxes. More...
Public Member Functions | |
MessageBox::Button | Show (MessageBox::Icon pIcon, System::String^ pText, MessageBox::Button pButton0, MessageBox::Button pButton1, MessageBox::Button pButton2, int pDefaultButtonIdx, int pEscapeButtonIdx) |
Show a message box with predefined button types. More... | |
int | Show (MessageBox::Icon pIcon, System::String^ pText, System::String^ pButton0, System::String^ pButton1, System::String^ pButton2, int pDefaultButtonIdx, int pEscapeButtonIdx) |
Show a message box. More... | |
Interface for custom message boxes.
MessageBox::Button X3g::Plugin::IMessageBox::Show | ( | MessageBox::Icon | pIcon, |
System::String^ | pText, | ||
MessageBox::Button | pButton0, | ||
MessageBox::Button | pButton1, | ||
MessageBox::Button | pButton2, | ||
int | pDefaultButtonIdx, | ||
int | pEscapeButtonIdx | ||
) |
Show a message box with predefined button types.
pIcon | Dictates the Icon and title of the message box. |
pText | The central text for the message box. |
pButton0 | Request one MessageBox::Button to be part of the message box. |
pButton1 | Request one MessageBox::Button to be part of the message box. |
pButton2 | Request one MessageBox::Button to be part of the message box. |
pDefaultButtonIdx | Specify which button is focused by default based on their index. |
pEscapeButtonIdx | Specify which MessageBox::Button to return, when the user closes the message box. |
int X3g::Plugin::IMessageBox::Show | ( | MessageBox::Icon | pIcon, |
System::String^ | pText, | ||
System::String^ | pButton0, | ||
System::String^ | pButton1, | ||
System::String^ | pButton2, | ||
int | pDefaultButtonIdx, | ||
int | pEscapeButtonIdx | ||
) |
Show a message box.
This method allows custom text for the message and each Button.
pIcon | Set the icon and title of the message box. |
pText | The central text for the message box. |
pButton0 | Text for the left button of the message box. This parameter is not allowed to be null or an empty String. |
pButton1 | Text for the centered button of the message box. This parameter is not allowed to be null or an empty String. |
pButton2 | Text for the right button of the message box. This parameter is not allowed to be null or an empty String. |
pDefaultButtonIdx | Specify which button is focused by default based on their index. |
pEscapeButtonIdx | Specify which button index to return, when the user closes the message box. |