PrinterSettings.PaperSizes Свойство

Определение

Получает размеры бумаги, поддерживаемые принтером.

public:
 property System::Drawing::Printing::PrinterSettings::PaperSizeCollection ^ PaperSizes { System::Drawing::Printing::PrinterSettings::PaperSizeCollection ^ get(); };
public System.Drawing.Printing.PrinterSettings.PaperSizeCollection PaperSizes { get; }
member this.PaperSizes : System.Drawing.Printing.PrinterSettings.PaperSizeCollection
Public ReadOnly Property PaperSizes As PrinterSettings.PaperSizeCollection

Значение свойства

PrinterSettings.PaperSizeCollection, представляющий размеры бумаги, поддерживаемые принтером.

Примеры

В следующем примере кода поле со списком comboPaperSize заполняется поддерживаемыми размерами бумаги принтера. Кроме того, создается пользовательский размер бумаги, который добавляется в поле со списком. Определяется PaperName как свойство, предоставляющее отображаемую строку для добавляемого элемента с помощью DisplayMember свойства поля со списком. В этом примере требуется, чтобы переменная PrintDocument с именем printDoc существовала, а конкретное поле со списком существовало.

// Add list of supported paper sizes found on the printer.
// The DisplayMember property is used to identify the property that will provide the display String*.
comboPaperSize->DisplayMember = "PaperName";
PaperSize^ pkSize;
for ( int i = 0; i < printDoc->PrinterSettings->PaperSizes->Count; i++ )
{
   pkSize = printDoc->PrinterSettings->PaperSizes[ i ];
   comboPaperSize->Items->Add( pkSize );
}

// Create a PaperSize and specify the custom paper size through the constructor and add to combobox.
PaperSize^ pkCustomSize1 = gcnew PaperSize( "First custom size",100,200 );
comboPaperSize->Items->Add( pkCustomSize1 );
// Add list of supported paper sizes found on the printer. 
// The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSize.DisplayMember = "PaperName";

PaperSize pkSize;
for (int i = 0; i < printDoc.PrinterSettings.PaperSizes.Count; i++){
    pkSize = printDoc.PrinterSettings.PaperSizes[i];
    comboPaperSize.Items.Add(pkSize);
}

// Create a PaperSize and specify the custom paper size through the constructor and add to combobox.
PaperSize pkCustomSize1 = new PaperSize("First custom size", 100, 200);

comboPaperSize.Items.Add(pkCustomSize1);
' Add list of supported paper sizes found on the printer. 
' The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSize.DisplayMember = "PaperName"

Dim pkSize As PaperSize
For i = 0 to printDoc.PrinterSettings.PaperSizes.Count - 1
    pkSize = printDoc.PrinterSettings.PaperSizes.Item(i)
    comboPaperSize.Items.Add(pkSize)
Next

' Create a PaperSize and specify the custom paper size through the constructor and add to combobox.
Dim pkCustomSize1 As New PaperSize("Custom Paper Size", 100, 200)

comboPaperSize.Items.Add(pkCustomSize1)

Комментарии

содержит PrinterSettings.PaperSizeCollection экземпляры PaperSize , представляющие размеры бумаги с помощью PaperSize.Kind свойства , содержащего одно из значений PaperKind .

Как правило, размер бумаги страницы устанавливается с помощью PageSettings.PaperSize свойства допустимым PaperSize , доступным в PaperSizes коллекции.

Сведения о том, как указать пользовательский размер бумаги, см. в конструкторе PaperSize .

Применяется к

См. также раздел