 | app_alert_callback Delegate |
pop up a dialog to show warning or hint.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate DialogResults app_alert_callback(
IPDF_JSPLATFORM pThis,
string Msg,
string Title,
ButtonTypes Type,
IconTypes Icon
)
Public Delegate Function app_alert_callback (
pThis As IPDF_JSPLATFORM,
Msg As String,
Title As String,
Type As ButtonTypes,
Icon As IconTypes
) As DialogResults
public delegate DialogResults app_alert_callback(
IPDF_JSPLATFORM^ pThis,
String^ Msg,
String^ Title,
ButtonTypes Type,
IconTypes Icon
)
type app_alert_callback =
delegate of
pThis : IPDF_JSPLATFORM *
Msg : string *
Title : string *
Type : ButtonTypes *
Icon : IconTypes -> DialogResults
/** @delegate */
public delegate DialogResults app_alert_callback(
IPDF_JSPLATFORM pThis,
String Msg,
String Title,
ButtonTypes Type,
IconTypes Icon
)
function(pThis, Msg, Title, Type, Icon);
Parameters
- pThis IPDF_JSPLATFORM
- Pointer to the interface structure itself
- Msg String
- A string containing the message to be displayed.
- Title String
- The title of the dialog.
- Type ButtonTypes
- The type of button group. 0-OK(default); 1-OK,Cancel; 2-Yes,NO; 3-Yes, NO, Cancel.
- Icon IconTypes
- The icon type
Return Value
DialogResultsThe return value could be the folowing type: 1-OK; 2-Cancel; 3-NO; 4-Yes;
RemarksRequired: Yes.
See Also