PrinterSettings.PrinterResolutionCollection.Item[Int32] プロパティ

定義

指定したインデックスにある PrinterResolution を取得します。

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

パラメーター

index
Int32

取得する PrinterResolution のインデックス。

プロパティ値

指定したインデックスにある PrinterResolution です。

次のコード例では、サポートされている解像度を comboPrintResolution コンボ ボックスに設定します。 この例では、 という名前printDocPrintDocument変数が存在し、特定のコンボ ボックスが存在する必要があります。

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

適用対象

こちらもご覧ください