ApplicationView.IsScreenCaptureEnabled Property
Definition
Gets or sets whether screen capture is enabled for the window (app view).
public:
property bool IsScreenCaptureEnabled { bool get(); void set(bool value); };
bool IsScreenCaptureEnabled();
void IsScreenCaptureEnabled(bool value);
public bool IsScreenCaptureEnabled { get; set; }
var boolean = applicationView.isScreenCaptureEnabled;
applicationView.isScreenCaptureEnabled = boolean;
Public Property IsScreenCaptureEnabled As Boolean
Property Value
true if screen capture is enabled for the window; false if it is not.
Remarks
This property lets you protect against unwanted copies of the window. When screen capture is disabled for a window, the window appears black in images produced by screen capture operations. For an example of setting the isScreenCaptureEnabled property, see the Disable screen capture sample.
The property is a nonstatic member of the window object. For JavaScript, this means that it is a method of the window object that getForCurrentView creates, not of the ApplicationView class.