ApplicationView.IsScreenCaptureEnabled 属性

定义

获取或设置是否为窗口启用屏幕捕获 (应用视图) 。

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

属性值

Boolean

bool

如果为窗口启用了屏幕捕获,则为 true;如果不是,则为 false。

注解

此属性可用于防止窗口的不需要副本。 当为窗口禁用屏幕捕获时,窗口在屏幕捕获操作生成的图像中显示为黑色。 有关设置 isScreenCaptureEnabled 属性的示例,请参阅 禁用屏幕捕获示例

属性是窗口对象的非静态成员。 对于 JavaScript,这意味着它是 getForCurrentView 创建的窗口对象的方法,而不是 ApplicationView 类的方法。

适用于

另请参阅