PrinterSettings.PaperSourceCollection.Count Vlastnost

Definice

Získá počet různých zdrojů papíru v kolekci.

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

Hodnota vlastnosti

Počet různých zdrojů papíru v kolekci.

Implementuje

Příklady

Následující příklad kódu naplní comboPaperSource pole se seznamem podporovanými zdroji papíru tiskárny. Vlastnost SourceName je identifikována 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 paper sources found on the printer to the combo box.
// The DisplayMember property is used to identify the property that will provide the display String*.
comboPaperSource->DisplayMember = "SourceName";
PaperSource^ pkSource;
for ( int i = 0; i < printDoc->PrinterSettings->PaperSources->Count; i++ )
{
   pkSource = printDoc->PrinterSettings->PaperSources[ i ];
   comboPaperSource->Items->Add( pkSource );
}
// Add list of paper sources found on the printer to the combo box.
// The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSource.DisplayMember="SourceName";

PaperSource pkSource;
for (int i = 0; i < printDoc.PrinterSettings.PaperSources.Count; i++){
    pkSource = printDoc.PrinterSettings.PaperSources[i];
    comboPaperSource.Items.Add(pkSource);
}
' Add list of paper sources found on the printer to the combo box.
' The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSource.DisplayMember = "SourceName"

Dim pkSource As PaperSource
For i = 0 to printDoc.PrinterSettings.PaperSources.Count - 1
    pkSource = printDoc.PrinterSettings.PaperSources.Item(i)
    comboPaperSource.Items.Add(pkSource)
Next

Platí pro