CustomLineCap コンストラクタとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > CustomLineCap コンストラクタの意味・解説 

CustomLineCap コンストラクタ (GraphicsPath, GraphicsPath, LineCap)

指定したアウトライン塗りつぶし使用して指定した既存の LineCap 列挙体から CustomLineCap クラス新しインスタンス初期化します。

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

Public Sub New ( _
    fillPath As GraphicsPath, _
    strokePath As GraphicsPath, _
    baseCap As LineCap _
)
Dim fillPath As GraphicsPath
Dim strokePath As GraphicsPath
Dim baseCap As LineCap

Dim instance As New CustomLineCap(fillPath,
 strokePath, baseCap)
public CustomLineCap (
    GraphicsPath fillPath,
    GraphicsPath strokePath,
    LineCap baseCap
)
public:
CustomLineCap (
    GraphicsPath^ fillPath, 
    GraphicsPath^ strokePath, 
    LineCap baseCap
)
public CustomLineCap (
    GraphicsPath fillPath, 
    GraphicsPath strokePath, 
    LineCap baseCap
)
public function CustomLineCap (
    fillPath : GraphicsPath, 
    strokePath : GraphicsPath, 
    baseCap : LineCap
)

パラメータ

fillPath

カスタム キャップ塗りつぶし定義する GraphicsPath オブジェクト

strokePath

カスタム キャップアウトライン定義する GraphicsPath オブジェクト

baseCap

カスタム キャップ作成元となるライン キャップ

解説解説

CustomLineCap は、操作に対して指定されている塗りつぶしモードに関係なく、"winding" 塗りつぶしモード使用します

fillPath パラメータstrokePath パラメータは、同時に使用できません。いずれかパラメータには null 値を渡す必要がありますいずれのパラメータにも null 値渡されない場合は、fillPath無視されます。strokePathnull 参照 (Visual Basic では Nothing) の場合fillPath は負の y 軸受け取る必要があります

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CustomLineCap クラス
CustomLineCap メンバ
System.Drawing.Drawing2D 名前空間

CustomLineCap コンストラクタ (GraphicsPath, GraphicsPath)

指定したアウトライン塗りつぶし使用して、CustomLineCap クラス新しインスタンス初期化します。

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

Public Sub New ( _
    fillPath As GraphicsPath, _
    strokePath As GraphicsPath _
)
Dim fillPath As GraphicsPath
Dim strokePath As GraphicsPath

Dim instance As New CustomLineCap(fillPath,
 strokePath)
public CustomLineCap (
    GraphicsPath fillPath,
    GraphicsPath strokePath
)
public:
CustomLineCap (
    GraphicsPath^ fillPath, 
    GraphicsPath^ strokePath
)
public CustomLineCap (
    GraphicsPath fillPath, 
    GraphicsPath strokePath
)
public function CustomLineCap (
    fillPath : GraphicsPath, 
    strokePath : GraphicsPath
)

パラメータ

fillPath

カスタム キャップ塗りつぶし定義する GraphicsPath オブジェクト

strokePath

カスタム キャップアウトライン定義する GraphicsPath オブジェクト

解説解説

CustomLineCap は、操作に対して指定されている塗りつぶしモードに関係なく、"winding" 塗りつぶしモード使用します

fillPath パラメータstrokePath パラメータは、同時に使用できません。いずれかパラメータには null 値を渡す必要がありますいずれのパラメータにも null 値渡されない場合は、fillPath無視されます。strokePathnull 参照 (Visual Basic では Nothing) の場合fillPath は負の y 軸受け取る必要があります

使用例使用例

CustomLineCap コンストラクタ使用する方法次の例に示します。この例を実行するには、コードWindows フォーム貼り付けます。フォームPaint イベント処理して DrawCaps 呼び出します。このとき、フォームPaint イベント処理メソッドで、e を PaintEventArgs として渡します

Protected Sub DrawCaps(ByVal
 e As PaintEventArgs)
    Dim hPath As New GraphicsPath()

    ' Create the outline for our custom end cap.
    hPath.AddLine(New Point(0, 0), New Point(0,
 5))
    hPath.AddLine(New Point(0, 5), New Point(5,
 1))
    hPath.AddLine(New Point(5, 1), New Point(3,
 1))

    ' Construct the hook-shaped end cap.
    Dim HookCap As New CustomLineCap(Nothing,
 hPath)

    ' Set the start cap and end cap of the HookCap to be rounded.
    HookCap.SetStrokeCaps(LineCap.Round, LineCap.Round)

    ' Create a pen and set end custom start and end
    ' caps to the hook cap.
    Dim customCapPen As New
 Pen(Color.Black, 5)
    customCapPen.CustomStartCap = HookCap
    customCapPen.CustomEndCap = HookCap

    ' Create a second pen using the start and end caps from
    ' the hook cap.
    Dim capPen As New Pen(Color.Red,
 10)
    Dim startCap As LineCap
    Dim endCap As LineCap
    HookCap.GetStrokeCaps(startCap, endCap)
    capPen.StartCap = startCap
    capPen.EndCap = endCap

    ' Create a line to draw.
    Dim points As Point() = {New Point(100,
 100), New Point(200, 50), _
        New Point(250, 300)}

    ' Draw the lines.
    e.Graphics.DrawLines(capPen, points)
    e.Graphics.DrawLines(customCapPen, points)

End Sub
protected void DrawCaps(PaintEventArgs e)
{
    GraphicsPath hPath = new GraphicsPath();

    // Create the outline for our custom end cap.
    hPath.AddLine(new Point(0, 0), new Point(0,
 5));
    hPath.AddLine(new Point(0, 5), new Point(5,
 1));
    hPath.AddLine(new Point(5, 1), new Point(3,
 1));

    // Construct the hook-shaped end cap.
    CustomLineCap HookCap = new CustomLineCap(null,
 hPath);

    // Set the start cap and end cap of the HookCap to be rounded.
    HookCap.SetStrokeCaps(LineCap.Round, LineCap.Round);

    // Create a pen and set end custom start and end
    // caps to the hook cap.
    Pen customCapPen = new Pen(Color.Black, 5);
    customCapPen.CustomStartCap = HookCap;
    customCapPen.CustomEndCap = HookCap;

    // Create a second pen using the start and end caps from
    // the hook cap.
    Pen capPen = new Pen(Color.Red, 10);
    LineCap startCap;
    LineCap endCap;
    HookCap.GetStrokeCaps(out startCap, out endCap);
    capPen.StartCap = startCap;
    capPen.EndCap = endCap;

    // Create a line to draw.
    Point[] points = { new Point(100, 100), new
 Point(200, 50), 
        new Point(250, 300) };

    // Draw the lines.
    e.Graphics.DrawLines(capPen, points);
    e.Graphics.DrawLines(customCapPen, points);

}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CustomLineCap クラス
CustomLineCap メンバ
System.Drawing.Drawing2D 名前空間

CustomLineCap コンストラクタ

指定したアウトライン塗りつぶし使用して、CustomLineCap クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
CustomLineCap (GraphicsPath, GraphicsPath) 指定したアウトライン塗りつぶし使用してCustomLineCap クラス新しインスタンス初期化します。
CustomLineCap (GraphicsPath, GraphicsPath, LineCap) 指定したアウトライン塗りつぶし使用して指定した既存の LineCap 列挙体から CustomLineCap クラス新しインスタンス初期化します。
CustomLineCap (GraphicsPath, GraphicsPath, LineCap, Single) 指定したアウトライン塗りつぶし、およびくぼみを使用して指定した既存LineCap 列挙体から CustomLineCap クラス新しインスタンス初期化します。
参照参照

関連項目

CustomLineCap クラス
CustomLineCap メンバ
System.Drawing.Drawing2D 名前空間

CustomLineCap コンストラクタ (GraphicsPath, GraphicsPath, LineCap, Single)

指定したアウトライン塗りつぶし、およびくぼみを使用して指定した既存の LineCap 列挙体から CustomLineCap クラス新しインスタンス初期化します。

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

Public Sub New ( _
    fillPath As GraphicsPath, _
    strokePath As GraphicsPath, _
    baseCap As LineCap, _
    baseInset As Single _
)
Dim fillPath As GraphicsPath
Dim strokePath As GraphicsPath
Dim baseCap As LineCap
Dim baseInset As Single

Dim instance As New CustomLineCap(fillPath,
 strokePath, baseCap, baseInset)
public CustomLineCap (
    GraphicsPath fillPath,
    GraphicsPath strokePath,
    LineCap baseCap,
    float baseInset
)
public:
CustomLineCap (
    GraphicsPath^ fillPath, 
    GraphicsPath^ strokePath, 
    LineCap baseCap, 
    float baseInset
)
public CustomLineCap (
    GraphicsPath fillPath, 
    GraphicsPath strokePath, 
    LineCap baseCap, 
    float baseInset
)
public function CustomLineCap (
    fillPath : GraphicsPath, 
    strokePath : GraphicsPath, 
    baseCap : LineCap, 
    baseInset : float
)

パラメータ

fillPath

カスタム キャップ塗りつぶし定義する GraphicsPath オブジェクト

strokePath

カスタム キャップアウトライン定義する GraphicsPath オブジェクト

baseCap

カスタム キャップ作成元となるライン キャップ

baseInset

キャップ直線との距離。

解説解説

CustomLineCap は、操作に対して指定されている塗りつぶしモードに関係なく、"winding" 塗りつぶしモード使用します

fillPath パラメータstrokePath パラメータは、同時に使用できません。いずれかパラメータには null 値を渡す必要がありますいずれのパラメータにも null 値渡されない場合は、fillPath無視されます。strokePathnull 参照 (Visual Basic では Nothing) の場合fillPath は負の y 軸受け取る必要があります

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CustomLineCap クラス
CustomLineCap メンバ
System.Drawing.Drawing2D 名前空間



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

辞書ショートカット

すべての辞書の索引

「CustomLineCap コンストラクタ」の関連用語

CustomLineCap コンストラクタのお隣キーワード
検索ランキング

   

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



CustomLineCap コンストラクタのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2024 GRAS Group, Inc.RSS