PrintCustomTextOptionDetails 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
사용자 지정 인쇄 작업 옵션을 나타냅니다.
public ref class PrintCustomTextOptionDetails sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class PrintCustomTextOptionDetails final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class PrintCustomTextOptionDetails
Public NotInheritable Class PrintCustomTextOptionDetails
- 상속
- 특성
- 구현
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에서 도입되었습니다.)
|
설명
개체를 검색하는 방법을 보여 주는 코드 조각은 다음과 같습니다.
// This code creates a new custom text option.
PrintCustomTextOptionDetails customTextOption =
printDetailedOptions.CreateTextOption("myCustomText", "Custom Options");
// Later in your app, when you want to access the custom text option created above,
// but you don't have access to the customTextOption variable that was returned
// when it was created, you can get it by looking up the same optionId that
// you used to create it.
PrintCustomTextOptionDetails printCustomTextOptionDetails =
(PrintCustomTextOptionDetails)printDetailedOptions.Options["myCustomText"];
버전 기록
Windows 버전 | SDK 버전 | 추가된 값 |
---|---|---|
1803 | 17134 | Description |
1803 | 17134 | WarningText |
속성
Description |
인쇄 사용자 지정 텍스트 옵션에 대한 설명을 가져오거나 설정합니다. |
DisplayName |
사용자 지정 인쇄 작업 옵션의 표시 이름을 가져오거나 설정합니다. |
ErrorText |
오류 조건에 대한 문자열을 가져오거나 설정합니다. |
MaxCharacters |
사용자 지정 인쇄 작업 옵션의 표시 이름에 대한 최대 문자 수를 가져오거나 설정합니다. |
OptionId |
사용자 지정 인쇄 작업 옵션의 ID를 가져옵니다. |
OptionType |
사용자 지정 인쇄 작업 옵션에 대한 옵션 유형을 가져옵니다. |
State |
사용자 지정 인쇄 작업 옵션의 상태를 가져오거나 설정합니다. |
Value |
사용자 지정 인쇄 작업 옵션의 값을 가져오거나 설정합니다. |
WarningText |
경고 조건에 대한 문자열을 가져오거나 설정합니다. |
메서드
TrySetValue(Object) |
사용자 지정 인쇄 작업의 값을 설정합니다. |