Difference between revisions of "Extensions.HMI.OpenScreen"

From emotive
Jump to navigation Jump to search
(Created page with "Category:HMI == Classification == {{ClassificationActivity | OpenScreen | Creates and displays a custom screen during the term | Action| OTX HMI extension | ...")
 
Line 14: Line 14:
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| Screen | [[ScreenSignature]] | - | - | [1] | This attribute contains a name which points to a '''ScreenSignature''' which contains a parameter description for the screen that shall be opened.}}
+
{{TableRowPropertie1| Screen | [[Screen]] | - | - | [1] | This attribute contains a name which points to a '''ScreenSignature''' which contains a parameter description for the screen that shall be opened.}}
 
{{TableRowPropertie2| ArgumentsList | [[ScreenArguments]] | - | - | [0..*] | This simple container element represents a list of arguments for an open screen call.}}
 
{{TableRowPropertie2| ArgumentsList | [[ScreenArguments]] | - | - | [0..*] | This simple container element represents a list of arguments for an open screen call.}}
 
{{TableRowPropertie1| Modal | [[Boolean]] | [[Value]] | false | - | This option tells the runtime system to make this screen modal or non-modal.}}
 
{{TableRowPropertie1| Modal | [[Boolean]] | [[Value]] | false | - | This option tells the runtime system to make this screen modal or non-modal.}}

Revision as of 07:06, 4 August 2014

Classification

Name OpenScreen
Short Description Creates and displays a custom screen during the term
Class Action
Extension OTX HMI extension
Group Custom screen related actions
Exceptions -
Checker Rules -
Standard Compliant Yes

Pseudo-Code Syntax

OpenScreen(Screen screen, ScreenArguments argumentsList);

Description

The OpenScreen creates activity and shows a custom screen during the term. The screen will be displayed immediately and can accept user input. When other screens are already open when the new screen opens, to ensure the application that the new screen from other screens hidden.

Properties

Name Data Type Class Default Cardinality Description
Screen Screen - - [1] This attribute contains a name which points to a ScreenSignature which contains a parameter description for the screen that shall be opened.
ArgumentsList ScreenArguments - - [0..*] This simple container element represents a list of arguments for an open screen call.
Modal Boolean Value false - This option tells the runtime system to make this screen modal or non-modal.
ScreenHandle Screen Variable - [0..1] This optional element represents the variable which shall be the handle for the opened screen.

Examples

OpenScreen(screen, argumentsList);

See also

HighlightScreen
CloseScreen