PrinterSettings.PrinterResolutionCollection.Item[Int32] Właściwość

Definicja

Pobiera element PrinterResolution w określonym indeksie.

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

Parametry

index
Int32

Indeks, PrinterResolution który ma być pobierany.

Wartość właściwości

Element PrinterResolution w określonym indeksie.

Przykłady

Poniższy przykład kodu wypełnia comboPrintResolution pole kombi obsługiwanymi rozwiązaniami. Przykład wymaga, aby zmienna PrintDocument o nazwie printDoc istnieje i że istnieje określone pole kombi.

// Add list of printer resolutions found on the printer to the combobox.
// The PrinterResolution's ToString() method will be used to provide the display String.
PrinterResolution^ pkResolution;
for ( int i = 0; i < printDoc->PrinterSettings->PrinterResolutions->Count; i++ )
{
   pkResolution = printDoc->PrinterSettings->PrinterResolutions[ i ];
   comboPrintResolution->Items->Add( pkResolution );
}
// Add list of printer resolutions found on the printer to the combobox.
// The PrinterResolution's ToString() method will be used to provide the display string.

PrinterResolution pkResolution;
for (int i = 0; i < printDoc.PrinterSettings.PrinterResolutions.Count; i++){
    pkResolution = printDoc.PrinterSettings.PrinterResolutions[i];
    comboPrintResolution.Items.Add(pkResolution);
}
' Add list of printer resolutions found on the printer to the combobox.
' The PrinterResolution's ToString() method will be used to provide the display string.
Dim pkResolution As PrinterResolution
For i = 0 to printDoc.PrinterSettings.PrinterResolutions.Count - 1
    pkResolution = printDoc.PrinterSettings.PrinterResolutions.Item(i)
    comboPrintResolution.Items.Add(pkResolution)
Next

Dotyczy

Zobacz też