Skip to main content
Version: 4.7.0

Include

An include is a component which allows you to pick a screen piece and place it inside another screen. It's very useful to reuse a piece of code between screens.

XML skeleton

<include target-screen="[screen-to-include]" target-source="[source-to-pick]" />

Attributes

AttributeUseTypeDescription
target-screenRequiredStringScreen to retrieve the code fragment from
target-sourceRequiredStringScreen source to pick up the code fragment from

Examples

Insert the print options dialog into a screen

<include target-screen="PrnOpt" target-source="center" />

Insert the screen help dialog into a screen

<include target-screen="screen-help" target-source="center"/>