CustomLineCapとは? わかりやすく解説

CustomLineCap クラス

ユーザー定義のカスタム ライン キャップカプセル化ます。

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

Public Class CustomLineCap
    Inherits MarshalByRefObject
    Implements ICloneable, IDisposable
Dim instance As CustomLineCap
public class CustomLineCap : MarshalByRefObject,
 ICloneable, IDisposable
public ref class CustomLineCap : public
 MarshalByRefObject, ICloneable, IDisposable
public class CustomLineCap extends MarshalByRefObject
 implements ICloneable, IDisposable
public class CustomLineCap extends
 MarshalByRefObject implements ICloneable, IDisposable
解説解説
使用例使用例

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);

}
継承階層継承階層
System.Object
   System.MarshalByRefObject
    System.Drawing.Drawing2D.CustomLineCap
       System.Drawing.Drawing2D.AdjustableArrowCap
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CustomLineCap メンバ
System.Drawing.Drawing2D 名前空間

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 名前空間

CustomLineCap プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ BaseCap この CustomLineCap の基になっている LineCap 列挙体を取得または設定します
パブリック プロパティ BaseInset キャップ直線との距離を取得または設定します
パブリック プロパティ StrokeJoin この CustomLineCap オブジェクト構成する直線接合方法決定する、LineJoin 列挙体を取得または設定します
パブリック プロパティ WidthScale Pen オブジェクトの幅に対応した、この CustomLineCap クラス オブジェクトスケーリングの量を取得または設定します
参照参照

関連項目

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

CustomLineCap メソッド


パブリック メソッドパブリック メソッド

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Clone 対象の CustomLineCap の同一コピー作成します
パブリック メソッド CreateObjRef  リモート オブジェクトとの通信使用するプロキシ生成必要な情報をすべて格納しているオブジェクト作成します。 ( MarshalByRefObject から継承されます。)
パブリック メソッド Dispose オーバーロードされます。  
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetLifetimeService  対象インスタンス有効期間ポリシー制御する現在の有効期間サービス オブジェクト取得します。 ( MarshalByRefObject から継承されます。)
パブリック メソッド GetStrokeCaps このカスタム キャップ構成する直線開始と終了使用するキャップ取得します
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド InitializeLifetimeService  対象インスタンス有効期間ポリシー制御する有効期間サービス オブジェクト取得します。 ( MarshalByRefObject から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド SetStrokeCaps 直線開始と終了使用する、このカスタム キャップ構成するキャップ設定します
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

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

CustomLineCap メンバ

ユーザー定義のカスタム ライン キャップカプセル化ます。

CustomLineCap データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ BaseCap この CustomLineCap の基になっている LineCap 列挙体を取得または設定します
パブリック プロパティ BaseInset キャップ直線との距離を取得または設定します
パブリック プロパティ StrokeJoin この CustomLineCap オブジェクト構成する直線接合方法決定する、LineJoin 列挙体を取得または設定します
パブリック プロパティ WidthScale Pen オブジェクトの幅に対応した、この CustomLineCap クラス オブジェクトスケーリングの量を取得または設定します
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Clone 対象CustomLineCap同一コピー作成します
パブリック メソッド CreateObjRef  リモート オブジェクトとの通信使用するプロキシ生成必要な情報をすべて格納しているオブジェクト作成します。 (MarshalByRefObject から継承されます。)
パブリック メソッド Dispose オーバーロードされます。  
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetLifetimeService  対象インスタンス有効期間ポリシー制御する現在の有効期間サービス オブジェクト取得します。 (MarshalByRefObject から継承されます。)
パブリック メソッド GetStrokeCaps このカスタム キャップ構成する直線開始と終了使用するキャップ取得します
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド InitializeLifetimeService  対象インスタンス有効期間ポリシー制御する有効期間サービス オブジェクト取得します。 (MarshalByRefObject から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド SetStrokeCaps 直線開始と終了使用する、このカスタム キャップ構成するキャップ設定します
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

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



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

辞書ショートカット

すべての辞書の索引

「CustomLineCap」の関連用語

CustomLineCapのお隣キーワード
検索ランキング

   

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



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

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

©2025 GRAS Group, Inc.RSS