|
|
|
|
|
ScreenshotAllowed (Property) In french: CopieEcranAutorisée
The ScreenshotAllowed property is used to: - Determine whether it is possible to take screenshots of a window,
- Allow or prevent window screenshots.
Remark: - This property is used to prevent taking screenshots of windows that contain sensitive data. If a user requests a screenshot of a window in the foreground, and the ScreenshotAllowed property is set to False, the system will prevent the screenshot from being taken.
- This property is equivalent to the "Allow window screenshot" option, in the "Details" tab of the window description.
// Prevent from taking a screenshot of the window WIN_CodeInput.ScreenshotAllowed = False
Syntax
Finding out whether window screenshots are allowed Hide the details
<Result> = <Window>.ScreenshotAllowed
<Result>: Boolean - True if screenshots are allowed,
- False otherwise.
<Window>: Window name Name of the window used.
Allowing or preventing window screenshots. Hide the details
<Window>.ScreenshotAllowed = <Authorization>
<Window>: Window name Name of the window used. <Authorization>: Boolean - True if screenshots are allowed,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|