ModifiedAppType (Property)

Applies To:

Document object

Description:

Returns the application name in which the Interactive Reporting document was modified.

Action:

Read-only

Constants:

The ModifiedAppType (Property) uses the BqAppType constant group, which consists of these values:

Example:

This example shows how to use and application type switch statement:

switch(ActiveDocument.ModifiedAppType)
{
case 0: 
TextBox3.Text = ".ModifiedAppType Type is: bqAppTypeUnknown"
break;
case 1: 
TextBox3.Text = ".ModifiedAppType Type is: bqAppTypeDesktopClient"
break; 
case 2: 
TextBox3.Text = ".ModifiedAppType Type is: bqAppTypePlugInClient"
break; 
case 3: 
TextBox3.Text = ".ModifiedAppType Type is: bqAppTypeThinClient"
break; 
case 4: 
TextBox3.Text = ".ModifiedAppType Type is: bqAppTypeScheduler"
break; 
case 5: 
TextBox3.Text = ".ModifiedAppType Type is: bqAppTypeScheduler"
break; 
default: 
TextBox3.Text = "No Section Value Available"
}
}
catch(e)
{
TextBox2.Text = "Caught: " + e.toString()
}