언어

Package.InteractiveMode 속성

정의

작업 실행 중 사용자 인터페이스 객체를 표시해야 하는지 여부를 나타내는 값을 받거나 설정합니다.

public:
 property bool InteractiveMode { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool InteractiveMode { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.InteractiveMode : bool with get, set
Public Property InteractiveMode As Boolean

속성 값

작업이 실행 중에 사용자 인터페이스 객체를 보여야 한다면 true; 그렇지 않으면 거짓입니다.

특성

예제

다음 코드 예시는 를 InteractiveMode true로 설정하는 방법을 보여줍니다.

pkg.InteractiveMode = true;  
pkg.InteractiveMode = True  

설명

이 속성은 실행 중에 작업이 오류 박스, 경고 또는 기타 대화 상자와 같은 그래픽 사용자 인터페이스를 표시해야 하는지 여부를 확인하는 데 사용됩니다. 디자이너에서 실행할 때는 이 값을 설정 true 해야 하는데, 패키지가 디자인 서피스와 상호작용적이기 때문입니다.

적용 대상