PrinterSettings.PaperSources Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает допустимые при работе с принтером источники бумаги.
public:
property System::Drawing::Printing::PrinterSettings::PaperSourceCollection ^ PaperSources { System::Drawing::Printing::PrinterSettings::PaperSourceCollection ^ get(); };
public System.Drawing.Printing.PrinterSettings.PaperSourceCollection PaperSources { get; }
member this.PaperSources : System.Drawing.Printing.PrinterSettings.PaperSourceCollection
Public ReadOnly Property PaperSources As PrinterSettings.PaperSourceCollection
Значение свойства
PrinterSettings.PaperSourceCollection, представляющий допустимые при работе с принтером источники бумаги.
Примеры
В следующем примере кода поле со списком comboPaperSource
заполняется поддерживаемыми источниками бумаги принтера. Определяется SourceName как свойство , предоставляющее строку отображения для добавляемого элемента с помощью DisplayMember свойства поля со списком. В этом примере требуется переменная с PrintDocument именем printDoc
exists и наличие определенного поля со списком.
// 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
Комментарии
содержит PrinterSettings.PaperSourceCollection экземпляры PaperSource , представляющие исходные лотки бумаги с помощью PaperSource.Kind свойства , которое содержит одно из значений PaperSourceKind .
Как правило, источник бумаги страницы устанавливается с помощью PageSettings.PaperSource свойства как допустимый PaperSource доступный в PaperSources коллекции.