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의 경우 이는 ApplicationView 클래스가 아니라 getForCurrentView가 만드는 창 개체의 메서드임을 의미합니다.

적용 대상

추가 정보