Graphics.PageUnit プロパティ
アセンブリ: System.Drawing (system.drawing.dll 内)

Dim instance As Graphics Dim value As GraphicsUnit value = instance.PageUnit instance.PageUnit = value
/** @property */ public GraphicsUnit get_PageUnit () /** @property */ public void set_PageUnit (GraphicsUnit value)
GraphicsUnit 値の 1 つ。


PageUnit プロパティの変更による影響を次のコード例に示します。
この例は、Windows フォームでの使用を意図してデザインされています。コードをフォームに貼り付け、フォームの Paint イベントを処理するときに PaintEventArgs の e を渡して ChangePageUnit メソッドを呼び出します。
Private Sub ChangePageUnit(ByVal e As PaintEventArgs) ' Create a rectangle. Dim rectangle1 As New Rectangle(20, 20, 50, 100) ' Draw its outline. e.Graphics.DrawRectangle(Pens.SlateBlue, rectangle1) ' Change the page scale. e.Graphics.PageUnit = GraphicsUnit.Point ' Draw the rectangle again. e.Graphics.DrawRectangle(Pens.Tomato, rectangle1) End Sub
private void ChangePageUnit(PaintEventArgs e) { // Create a rectangle. Rectangle rectangle1 = new Rectangle(20, 20, 50, 100); // Draw its outline. e.Graphics.DrawRectangle(Pens.SlateBlue, rectangle1); // Change the page scale. e.Graphics.PageUnit = GraphicsUnit.Point; // Draw the rectangle again. e.Graphics.DrawRectangle(Pens.Tomato, rectangle1); }
private: void ChangePageUnit( PaintEventArgs^ e ) { // Create a rectangle. Rectangle rectangle1 = Rectangle(20,20,50,100); // Draw its outline. e->Graphics->DrawRectangle( Pens::SlateBlue, rectangle1 ); // Change the page scale. e->Graphics->PageUnit = GraphicsUnit::Point; // Draw the rectangle again. e->Graphics->DrawRectangle( Pens::Tomato, rectangle1 ); }
private void ChangePageUnit(PaintEventArgs e) { // Create a rectangle. Rectangle rectangle1 = new Rectangle(20, 20, 50, 100); // Draw its outline. e.get_Graphics().DrawRectangle(Pens.get_SlateBlue(), rectangle1); // Change the page scale. e.get_Graphics().set_PageUnit(GraphicsUnit.Point); // Draw the rectangle again. e.get_Graphics().DrawRectangle(Pens.get_Tomato(), rectangle1); } //ChangePageUnit

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からGraphics.PageUnit プロパティを検索する場合は、下記のリンクをクリックしてください。

- Graphics.PageUnit プロパティのページへのリンク