PageSettings 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
한면 인쇄 페이지에 적용할 설정을 지정합니다.
public ref class PageSettings : ICloneable
public class PageSettings : ICloneable
[System.Runtime.InteropServices.ComVisible(false)]
public class PageSettings : ICloneable
[System.Serializable]
public class PageSettings : ICloneable
type PageSettings = class
interface ICloneable
[<System.Runtime.InteropServices.ComVisible(false)>]
type PageSettings = class
interface ICloneable
[<System.Serializable>]
type PageSettings = class
interface ICloneable
Public Class PageSettings
Implements ICloneable
- 상속
-
PageSettings
- 특성
- 구현
예제
다음 예에서는 이벤트를 처리하고 PrintPage 의 PrintPageEventArgs인수를 PageSettings 확인하는 방법을 보여 줍니다. 이 코드를 사용하려면 라는 PrintDocument1
구성 요소를 Windows Form에 추가하고 PrintDocument 해당 PrintPage 이벤트를 예제의 printDocument1_PrintPage
메서드와 연결합니다.
private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
if (e.PageSettings.Color && !printDocument1.PrinterSettings.SupportsColor)
MessageBox.Show("Color printing not supported on selected printer.", "Printer Warning", MessageBoxButtons.OKCancel);
}
Private Sub printDocument1_PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles printDocument1.PrintPage
If e.PageSettings.Color AndAlso Not printDocument1.PrinterSettings.SupportsColor Then
MessageBox.Show("Color printing not supported on selected printer.", "Printer Warning", MessageBoxButtons.OKCancel)
End If
End Sub
설명
클래스는 PageSettings 페이지를 인쇄하는 방법을 수정하는 설정을 지정하는 데 사용됩니다. 일반적으로 속성을 통해 PrintDocument.DefaultPageSettings 인쇄할 모든 페이지의 기본 설정을 설정합니다. 페이지 단위로 설정을 지정하려면 또는 이벤트를 처리 PrintDocument.PrintPage 하고 또는 QueryPageSettingsEventArgsPrintDocument.QueryPageSettings 에 포함된 인수를 PrintPageEventArgs 각각 수정 PageSettings 합니다.
이벤트 처리 PrintDocument 에 대한 자세한 내용은 클래스 개요를 PrintDocument 참조하세요. 인쇄에 대한 자세한 내용은 네임스페이스 개요를 System.Drawing.Printing 참조하세요.
참고
.NET 6 이상 버전에서는 이 형식을 포함하는 System.Drawing.Common 패키지가 Windows 운영 체제에서만 지원됩니다. 플랫폼 간 앱에서 이 형식을 사용하면 컴파일 시간 경고 및 런타임 예외가 발생합니다. 자세한 내용은 Windows에서만 지원되는 System.Drawing.Common을 참조하세요.
생성자
PageSettings() |
기본 프린터를 사용하여 PageSettings 클래스의 새 인스턴스를 초기화합니다. |
PageSettings(PrinterSettings) |
지정된 프린터를 사용하여 PageSettings 클래스의 새 인스턴스를 초기화합니다. |
속성
Bounds |
Landscape 속성으로 지정한 페이지 방향을 고려하여 페이지의 크기를 가져옵니다. |
Color |
페이지를 컬러로 인쇄할지 여부를 나타내는 값을 가져오거나 설정합니다. |
HardMarginX |
페이지 왼쪽에 있는 하드 여백의 X 좌표(1/100인치)를 가져옵니다. |
HardMarginY |
페이지 위쪽에 있는 하드 여백의 Y 좌표(1/100인치)를 가져옵니다. |
Landscape |
페이지를 가로 또는 세로 방향으로 인쇄할지 여부를 나타내는 값을 가져오거나 설정합니다. |
Margins |
이 페이지에 대한 여백을 가져오거나 설정합니다. |
PaperSize |
페이지에 대한 용지 크기를 가져오거나 설정합니다. |
PaperSource |
페이지의 용지 공급을 가져오거나 설정합니다(예: 프린터의 상단 용지함). |
PrintableArea |
프린터에서 인쇄할 수 있는 페이지 영역의 경계를 가져옵니다. |
PrinterResolution |
페이지에 대한 프린터 해상도를 가져오거나 설정합니다. |
PrinterSettings |
해당 페이지와 관련된 프린터 설정을 가져오거나 설정합니다. |
메서드
Clone() |
이 PageSettings의 복사본을 만듭니다. |
CopyToHdevmode(IntPtr) |
PageSettings에서 지정된 |
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
SetHdevmode(IntPtr) |
지정된 |
ToString() |
PageSettings를 문자열 형식으로 변환합니다. |
적용 대상
추가 정보
.NET