StandardPrintTaskOptions 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
PrintTaskOptions 클래스가 나타내는 옵션에 대한 정식 이름에 대한 액세스를 제공합니다. StandardPrintTaskOptions 클래스를 사용하여 사용자 환경에 표시되는 인쇄 옵션을 식별하거나 PrintTaskOptionDetails 클래스를 사용하여 특정 옵션을 검색할 수 있습니다.
public ref class StandardPrintTaskOptions abstract sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class StandardPrintTaskOptions final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public static class StandardPrintTaskOptions
Public Class StandardPrintTaskOptions
- 상속
- 특성
Windows 요구 사항
디바이스 패밀리 |
Windows 10 (10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox에서 도입되었습니다.)
|
API contract |
Windows.Foundation.UniversalApiContract (v1.0에서 도입되었습니다.)
|
설명
StandardPrintTaskOptions 클래스는 PrintTaskOptions 개체에 사용되는 일반적인 인쇄 작업 옵션에 대한 정식 이름을 제공합니다. 이러한 이름은 PrintTaskOptions.DisplayedOptions 목록에서 항목을 추가하거나 제거하여 인쇄 미리 보기 UI에 표시되는 옵션을 나타내는 데 사용할 수 있습니다. 자세한 내용은 인쇄 미리 보기 UI 사용자 지정을 참조하세요. 이러한 이름은 PrintTaskOptionDetails 개체와 함께 사용하여 옵션 목록에서 표준 옵션을 찾을 수도 있습니다. 이러한 이름은 고유한 것으로 간주되며 동일한 이름의 옵션을 만들려는 시도는 거부됩니다.
예를 들어 UI에 표시할 표준 인쇄 작업 옵션을 추가하는 데 사용할 수 있는 코드 조각은 다음과 같습니다.
// Choose the printer options to be shown.
// The order in which the options are appended determines the order in which they appear in the UI
displayedOptions.Clear();
displayedOptions.Add(Windows.Graphics.Printing.StandardPrintTaskOptions.Copies);
displayedOptions.Add(Windows.Graphics.Printing.StandardPrintTaskOptions.Orientation);
displayedOptions.Add(Windows.Graphics.Printing.StandardPrintTaskOptions.MediaSize);
displayedOptions.Add(Windows.Graphics.Printing.StandardPrintTaskOptions.Collation);
displayedOptions.Add(Windows.Graphics.Printing.StandardPrintTaskOptions.Duplex);
이 시나리오 및 기타 인쇄 시나리오에 대한 자세한 내용은 인쇄 및 UWP 인쇄 샘플을 참조하세요.
버전 기록
Windows 버전 | SDK 버전 | 추가된 값 |
---|---|---|
1607 | 14393 | 접경 |
1803 | 17134 | CustomPageRanges |
속성
Binding |
인쇄 작업의 바인딩 옵션에 대한 정식 이름을 가져옵니다. |
Bordering |
인쇄 작업에 대한 테두리 옵션의 정식 이름을 가져옵니다. |
Collation |
인쇄 작업의 데이터 정렬 옵션에 대한 정식 이름을 가져옵니다. |
ColorMode |
인쇄 작업의 색 모드 옵션에 대한 정식 이름을 가져옵니다. |
Copies |
인쇄 작업의 복사본 옵션에 대한 정식 이름을 가져옵니다. |
CustomPageRanges |
인쇄 작업에 대한 사용자 지정 페이지 범위 옵션의 정식 이름을 가져옵니다. |
Duplex |
인쇄 작업의 이중 옵션에 대한 정식 이름을 가져옵니다. |
HolePunch |
인쇄 작업의 구멍 펀치 옵션에 대한 정식 이름을 가져옵니다. |
InputBin |
인쇄 작업의 입력 bin 옵션에 대한 정식 이름을 가져옵니다. |
MediaSize |
인쇄 작업의 미디어 크기 옵션에 대한 정식 이름을 가져옵니다. |
MediaType |
인쇄 작업의 미디어 형식 옵션에 대한 정식 이름을 가져옵니다. |
NUp |
인쇄 작업의 NUp(시트당 페이지 수) 옵션에 대한 정식 이름을 가져옵니다. |
Orientation |
인쇄 작업의 방향 옵션에 대한 정식 이름을 가져옵니다. |
PrintQuality |
인쇄 작업의 인쇄 품질 옵션에 대한 정식 이름을 가져옵니다. |
Staple |
인쇄 작업의 스테이플 옵션에 대한 정식 이름을 가져옵니다. |