Pen.EndLineCap プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ストロークの終点に使用する形状の種類を取得または設定します。
public:
property System::Windows::Media::PenLineCap EndLineCap { System::Windows::Media::PenLineCap get(); void set(System::Windows::Media::PenLineCap value); };
public System.Windows.Media.PenLineCap EndLineCap { get; set; }
member this.EndLineCap : System.Windows.Media.PenLineCap with get, set
Public Property EndLineCap As PenLineCap
プロパティ値
ストロークを終了する形状の種類。 既定値は Flat です。
例
次の例は、プロパティをEndLineCap使用StartLineCapして、ストロークの一方の側に丸い端を作成し、ストロークの反対側に三角形の端を作成する方法を示しています。
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Margin="20">
<Canvas Margin="100" Width="100" Height="100">
<Canvas.Background>
<DrawingBrush>
<DrawingBrush.Drawing>
<GeometryDrawing>
<GeometryDrawing.Geometry>
<LineGeometry StartPoint="10,10" EndPoint="50,100" />
</GeometryDrawing.Geometry>
<GeometryDrawing.Pen>
<!-- This Pen specifies a round line cap at the beginning of
the line and a triangular line cap at the end of the line. -->
<Pen Brush="Blue" Thickness="8" StartLineCap="Round"
EndLineCap="Triangle" />
</GeometryDrawing.Pen>
</GeometryDrawing>
</DrawingBrush.Drawing>
</DrawingBrush>
</Canvas.Background>
</Canvas>
</StackPanel>
</Page>
注釈
依存プロパティ情報
識別子フィールド | EndLineCapProperty |
に設定されたメタデータ プロパティ true |
なし |