Difference between revisions of "Extensions.HMI.ScreenClosedEventSource"
Jump to navigation
Jump to search
m (Hb moved page ScreenClosedEventSource to Extensions.HMI.ScreenClosedEventSource: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:HMI]] | + | {{DISPLAYTITLE: ''' ScreenClosedEventSource'''}}[[Category:HMI]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | ScreenClosedEventSource | Screen used as an event source when the window | [[Term]] | [[HMI|OTX HMI extension]] | [[HMI related terms]] | - | - }} | + | {{ClassificationActivity | ScreenClosedEventSource | Screen used as an event source when the window | [[Term]] | [[Extensions.HMI|OTX HMI extension]] | [[HMI related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 9: | Line 9: | ||
== Description == | == Description == | ||
− | The '''ScreenClosedEventSource''' term takes a ''screen'' to object, from an event source is made. This term allows for OTX sequence a ''screen'' as an event source in connection with the OTX [[EventHandling]] library to use. A ''screen'' will trigger an event if the specified ''screen'' is closed. | + | The '''ScreenClosedEventSource''' term takes a ''screen'' to object, from an event source is made. This term allows for OTX sequence a ''screen'' as an event source in connection with the OTX [[Extensions.EventHandling|EventHandling]] library to use. A ''screen'' will trigger an event if the specified ''screen'' is closed. |
− | {{TermReturnValue| [[EventSource]] | Event source from a screen object.}} | + | {{TermReturnValue| [[Extensions.EventHandling.EventSource|EventSource]] | Event source from a screen object.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Screen | [[Screen]] | [[Term]] | - | [1] | The screen, which is connected the event source}} | + | {{TableRowPropertie1| Screen | [[Extensions.HMI.Screen|Screen]] | [[Term]] | - | [1] | The screen, which is connected the event source}} |
|} | |} | ||
Line 36: | Line 36: | ||
== See also == | == See also == | ||
− | [[IsScreenClosedEvent]] <br/> | + | [[Extensions.HMI.IsScreenClosedEvent|IsScreenClosedEvent]] <br/> |
− | [[ScreenIsOpen]] | + | [[Extensions.HMI.ScreenIsOpen|ScreenIsOpen]] |
Revision as of 09:01, 15 February 2016
Contents
Classification
Name | ScreenClosedEventSource |
Short Description | Screen used as an event source when the window |
Class | Term |
Extension | OTX HMI extension |
Group | HMI related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
EventSourceTerm = Hmi.ScreenClosedEventSource(ScreenHandle);
Description
The ScreenClosedEventSource term takes a screen to object, from an event source is made. This term allows for OTX sequence a screen as an event source in connection with the OTX EventHandling library to use. A screen will trigger an event if the specified screen is closed.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
EventSource | Event source from a screen object. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Screen | Screen | Term | - | [1] | The screen, which is connected the event source |
OTL Examples
package Hmi.ScreenSignature ScreenSignature1(ref Integer ScreenInOutParameter1);
public procedure main()
{
Hmi.Screen ScreenHandle1;
Integer ScreenInOut1;
EventHandling.EventSource EventSource1;
Hmi.OpenScreen(ScreenSignature1, false, {ref ScreenInOutParameter1 = ScreenInOut1}, ScreenHandle1);
Hmi.CloseScreen(ScreenHandle1);
EventSource1 = Hmi.ScreenClosedEventSource(ScreenHandle1);
}