PrinterSettings.PrinterResolutions 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 프린터에서 지원하는 모든 해상도를 가져옵니다.
public:
property System::Drawing::Printing::PrinterSettings::PrinterResolutionCollection ^ PrinterResolutions { System::Drawing::Printing::PrinterSettings::PrinterResolutionCollection ^ get(); };
public System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection PrinterResolutions { get; }
member this.PrinterResolutions : System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection
Public ReadOnly Property PrinterResolutions As PrinterSettings.PrinterResolutionCollection
속성 값
이 프린터에서 지원하는 해상도를 나타내는 PrinterSettings.PrinterResolutionCollection입니다.
예제
다음 코드 예제에서는 지원되는 해상도로 comboPrintResolution
콤보 상자를 채웁니다. 이 예제에서는 라는 printDoc
변수가 PrintDocument 있고 특정 콤보 상자가 있어야 합니다.
// Add list of printer resolutions found on the printer to the combobox.
// The PrinterResolution's ToString() method will be used to provide the display String.
PrinterResolution^ pkResolution;
for ( int i = 0; i < printDoc->PrinterSettings->PrinterResolutions->Count; i++ )
{
pkResolution = printDoc->PrinterSettings->PrinterResolutions[ i ];
comboPrintResolution->Items->Add( pkResolution );
}
// Add list of printer resolutions found on the printer to the combobox.
// The PrinterResolution's ToString() method will be used to provide the display string.
PrinterResolution pkResolution;
for (int i = 0; i < printDoc.PrinterSettings.PrinterResolutions.Count; i++){
pkResolution = printDoc.PrinterSettings.PrinterResolutions[i];
comboPrintResolution.Items.Add(pkResolution);
}
' Add list of printer resolutions found on the printer to the combobox.
' The PrinterResolution's ToString() method will be used to provide the display string.
Dim pkResolution As PrinterResolution
For i = 0 to printDoc.PrinterSettings.PrinterResolutions.Count - 1
pkResolution = printDoc.PrinterSettings.PrinterResolutions.Item(i)
comboPrintResolution.Items.Add(pkResolution)
Next
설명
PrinterSettings.PrinterResolutionCollection 에는 PrinterResolution 값을 포함하는 속성을 통해 지원되는 프린터 해상도를 PrinterResolution.Kind 나타내는 인스턴스가 PrinterResolutionKind 포함됩니다.
일반적으로 설정 하는 페이지의 용지 원본을 통해는 PageSettings.PrinterResolution 속성을 통해 사용할 수 있는 PrinterResolutions 유효한 PrinterResolution 컬렉션입니다.
가 이Custom
면 PrinterResolutionKind 및 Y 속성을 사용하여 X 각각 가로 및 세로 방향으로 사용자 지정 프린터 해상도를 결정합니다.
적용 대상
추가 정보
.NET