PrinterSettings.PaperSizes Vlastnost

Definice

Získá formáty papíru, které jsou podporovány touto tiskárnou.

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

Hodnota vlastnosti

A PrinterSettings.PaperSizeCollection představující formáty papíru podporované touto tiskárnou.

Příklady

Následující příklad kódu naplní comboPaperSize pole se seznamem podporovanými formáty papíru tiskárny. Kromě toho se vytvoří vlastní formát papíru, který se přidá do pole se seznamem. Je PaperName identifikován jako vlastnost, která poskytuje zobrazovaný řetězec pro položku, která se přidává prostřednictvím DisplayMember vlastnosti pole se seznamem. Příklad vyžaduje, aby proměnná PrintDocument s názvem printDoc existuje a aby existovalo konkrétní pole se seznamem.

// 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)

Poznámky

Obsahuje PrinterSettings.PaperSizeCollectionPaperSize instance, které představují formáty papíru prostřednictvím PaperSize.Kind vlastnosti, která obsahuje jednu z PaperKind hodnot.

Obvykle nastavujete formát papíru stránky prostřednictvím PageSettings.PaperSize vlastnosti na platný PaperSize dostupný prostřednictvím PaperSizes kolekce.

Pokud chcete zadat vlastní formát papíru, podívejte se na PaperSize konstruktor.

Platí pro

Viz také