Graphics.PageUnit プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > Graphics.PageUnit プロパティの意味・解説 

Graphics.PageUnit プロパティ

この Graphicsページ座標使用する長さの単位取得または設定します

名前空間: System.Drawing
アセンブリ: System.Drawing (system.drawing.dll 内)
構文構文

Public Property PageUnit As
 GraphicsUnit
Dim instance As Graphics
Dim value As GraphicsUnit

value = instance.PageUnit

instance.PageUnit = value
public GraphicsUnit PageUnit { get; set;
 }
public:
property GraphicsUnit PageUnit {
    GraphicsUnit get ();
    void set (GraphicsUnit value);
}
/** @property */
public GraphicsUnit get_PageUnit ()

/** @property */
public void set_PageUnit (GraphicsUnit value)
public function get PageUnit
 () : GraphicsUnit

public function set PageUnit
 (value : GraphicsUnit)

プロパティ
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
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からGraphics.PageUnit プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からGraphics.PageUnit プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からGraphics.PageUnit プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「Graphics.PageUnit プロパティ」の関連用語

Graphics.PageUnit プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Graphics.PageUnit プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS