ScenomeApplication.MessageBox

This page contains reference documentation for the MessageBox function. This function displays a message box terminated with Yes/No or OK.

Prototype

int MessageBox( int MessageBoxType, string MessageContents, string MessageBoxTitle )

Parameters

Function parameters are as follows:

Examples

Examples are as follows:

if ( esm_modifier.OutputFilePath == "" ) 
   { 
      Application.MessageBox( 0, "You did not specify an output file path!", "Warning" ); 
      return;
   }

Working Sample Code

For sample code: