Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
a_f:a:save_screen [2022/09/01 01:23] – removed - external edit (Unknown date) 127.0.0.1a_f:a:save_screen [2023/05/09 01:45] (current) sean
Line 1: Line 1:
 +{{tag>Index Action Action_List Process UI Documents Version:v7.0}}
 +====== SAVE SCREEN ======
 +
 +This action allows you to save image of a chart displayed on the current screen or the entire displayed screen in an attribute of the Picture or Document types (in the latter case the image is saved as PDF file). 
 +
 +===== Syntax =====
 +
 +''SAVE SCREEN'' [StringLiteral() ] ''TO'' AttributeIdentifier() [ ''AS PDF'' ]
 +
 +===== Example =====
 +
 +<code aim>SAVE SCREEN 'my chart id' TO Object.PictureAttribute </code>
 +
 +
 +The action above saves the chart identified by id ''my chart id'' in the picture attribute of some object in the Context. The id of the chart can be specified when defining a chart query.
 +
 +<code aim>SAVE SCREEN TO Object.PictureAttribute </code>
 +
 +The action above saves the current screen in the picture attribute of some object in the Context. 
 +
 +<code aim>SAVE SCREEN TO Object.DocumentAttribute AS PDF </code>
 +
 +The action above saves the current screen in the document attribute of some object in the Context as PDF file. 
 +
 +