Aracılığıyla paylaş


PrinterSettings.PaperSourceCollection.Item[Int32] Özellik

Tanım

Belirtilen dizinde alır PaperSource .

public:
 virtual property System::Drawing::Printing::PaperSource ^ default[int] { System::Drawing::Printing::PaperSource ^ get(int index); };
public virtual System.Drawing.Printing.PaperSource this[int index] { get; }
member this.Item(int) : System.Drawing.Printing.PaperSource
Default Public Overridable ReadOnly Property Item(index As Integer) As PaperSource

Parametreler

index
Int32

Alınacak dizinini PaperSource .

Özellik Değeri

PaperSource Belirtilen dizinde.

Örnekler

Aşağıdaki kod örneği birleşik giriş kutusunu yazıcının desteklenen kağıt kaynaklarıyla doldurur comboPaperSource . SourceName, birleşik giriş kutusunun özelliği aracılığıyla DisplayMember eklenen öğenin görüntüleme dizesini sağlayan özellik olarak tanımlanır. Örnek, adlı printDoc bir değişkenin mevcut olmasını ve belirli birleşik PrintDocument giriş kutusunun mevcut olmasını gerektirir.

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

Şunlara uygulanır

Ayrıca bkz.