PrintDialog.PrintableAreaWidth Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la largeur de la zone imprimable de la page.
public:
property double PrintableAreaWidth { double get(); };
public double PrintableAreaWidth { get; }
member this.PrintableAreaWidth : double
Public ReadOnly Property PrintableAreaWidth As Double
Valeur de propriété
Double qui représente la largeur de la zone imprimable de la page.
Exemples
L’exemple suivant montre comment obtenir la valeur de la propriété à l’aide PrintableAreaWidth du code et du balisage XAML (Extensible Application Markup Language).
<Button Width="200" Click="GetWidth">Get the Printable Width</Button>
...
private void GetWidth(object sender, RoutedEventArgs e)
{
PrintDialog pDialog = new PrintDialog();
PrintQueue pq = pDialog.PrintQueue; //force initialization of the dialog's PrintTicket or PrintQueue
txt2.Text = pDialog.PrintableAreaWidth.ToString() + " is the printable width";
}
Private Sub GetWidth(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim pDialog As New PrintDialog()
Dim pq As PrintQueue = pDialog.PrintQueue 'force initialization of the dialog's PrintTicket or PrintQueue
txt2.Text = pDialog.PrintableAreaWidth.ToString() & " is the printable width"
End Sub