PaperSize Constructores
Definición
Sobrecargas
PaperSize() |
Inicializa una nueva instancia de la clase PaperSize.Initializes a new instance of the PaperSize class. |
PaperSize(String, Int32, Int32) |
Inicializa una nueva instancia de la clase PaperSize.Initializes a new instance of the PaperSize class. |
Comentarios
En la siguiente tabla se muestran los valores iniciales de las propiedades de una instancia de la clase PaperSize.The following table shows initial property values for an instance of PaperSize class.
Propiedad.Property | Valor inicialInitial value |
---|---|
Kind | PaperKind.Custom |
PaperName | String.Empty |
PaperSize()
PaperSize(String, Int32, Int32)
Inicializa una nueva instancia de la clase PaperSize.Initializes a new instance of the PaperSize class.
public:
PaperSize(System::String ^ name, int width, int height);
public PaperSize (string name, int width, int height);
new System.Drawing.Printing.PaperSize : string * int * int -> System.Drawing.Printing.PaperSize
Public Sub New (name As String, width As Integer, height As Integer)
Parámetros
- name
- String
Nombre del papel.The name of the paper.
- width
- Int32
Ancho del papel, en centésimas de pulgada.The width of the paper, in hundredths of an inch.
- height
- Int32
Alto del papel, en centésimas de pulgada.The height of the paper, in hundredths of an inch.
Ejemplos
En el ejemplo de código siguiente se comboPaperSize
rellena el cuadro combinado con los tamaños de papel compatibles con la impresora.The following code example populates the comboPaperSize
combo box with the printer's supported paper sizes. Además, se crea un tamaño de papel personalizado y se agrega al cuadro combinado.In addition, a custom paper size is created and added to the combo box. Se identifica como la propiedad que proporcionará la cadena de presentación para el elemento que se va a DisplayMember agregar a través de la propiedad del cuadro combinado. PaperNameThe PaperName is identified as the property that will provide the display string for the item being added through the DisplayMember property of the combo box. En el ejemplo se da PrintDocument por supuesto printDoc
que una variable denominada existe y que existe el cuadro combinado específico.The example assumes that a PrintDocument variable named printDoc
exists and that the specific combo box exists.
// Add list of supported paper sizes found on the printer.
// The DisplayMember property is used to identify the property that will provide the display String*.
comboPaperSize->DisplayMember = "PaperName";
PaperSize^ pkSize;
for ( int i = 0; i < printDoc->PrinterSettings->PaperSizes->Count; i++ )
{
pkSize = printDoc->PrinterSettings->PaperSizes[ i ];
comboPaperSize->Items->Add( pkSize );
}
// Create a PaperSize and specify the custom paper size through the constructor and add to combobox.
PaperSize^ pkCustomSize1 = gcnew PaperSize( "First custom size",100,200 );
comboPaperSize->Items->Add( pkCustomSize1 );
// Add list of supported paper sizes found on the printer.
// The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSize.DisplayMember = "PaperName";
PaperSize pkSize;
for (int i = 0; i < printDoc.PrinterSettings.PaperSizes.Count; i++){
pkSize = printDoc.PrinterSettings.PaperSizes[i];
comboPaperSize.Items.Add(pkSize);
}
// Create a PaperSize and specify the custom paper size through the constructor and add to combobox.
PaperSize pkCustomSize1 = new PaperSize("First custom size", 100, 200);
comboPaperSize.Items.Add(pkCustomSize1);
' Add list of supported paper sizes found on the printer.
' The DisplayMember property is used to identify the property that will provide the display string.
comboPaperSize.DisplayMember = "PaperName"
Dim pkSize As PaperSize
For i = 0 to printDoc.PrinterSettings.PaperSizes.Count - 1
pkSize = printDoc.PrinterSettings.PaperSizes.Item(i)
comboPaperSize.Items.Add(pkSize)
Next
' Create a PaperSize and specify the custom paper size through the constructor and add to combobox.
Dim pkCustomSize1 As New PaperSize("Custom Paper Size", 100, 200)
comboPaperSize.Items.Add(pkCustomSize1)
Comentarios
Un PaperSize creado con este constructor siempre tiene su Kind propiedad establecida en Custom.A PaperSize created with this constructor always has its Kind property set to Custom. Los Width valores Height de las propiedades y solo se pueden establecer PaperSize para los objetos personalizados.The Width and Height property values can be set only for custom PaperSize objects.