PrinterSettings.PrinterResolutionCollection.Item[Int32] Propriedade

Definição

Obtém o PrinterResolution em um índice especificado.

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

Parâmetros

index
Int32

O índice do PrinterResolution a obter.

Valor da propriedade

O PrinterResolution no índice especificado.

Exemplos

O exemplo de código a seguir preenche a comboPrintResolution caixa de combinação com as resoluções com suporte. O exemplo requer que exista uma PrintDocument variável chamada printDoc e que a caixa de combinação específica exista.

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

Aplica-se a

Confira também