This page contains reference documentation for the MessageBox function. This function displays a message box terminated with Yes/No or OK.
int MessageBox( int MessageBoxType, string MessageContents, string MessageBoxTitle )
Function parameters are as follows:
Examples are as follows:
if ( esm_modifier.OutputFilePath == "" )
{
Application.MessageBox( 0, "You did not specify an output file path!", "Warning" );
return;
}
For sample code: