File: System\Drawing\Drawing2D\AdjustableArrowCap.cs
Web Access
Project: src\src\System.Drawing.Common\src\System.Drawing.Common.csproj (System.Drawing.Common)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Drawing.Drawing2D;
 
public sealed unsafe partial class AdjustableArrowCap : CustomLineCap
{
    internal AdjustableArrowCap(GpCustomLineCap* nativeCap) : base(nativeCap) { }
 
    public AdjustableArrowCap(float width, float height) : this(width, height, true) { }
 
    public AdjustableArrowCap(float width, float height, bool isFilled)
    {
        GpAdjustableArrowCap* nativeCap;
        PInvoke.GdipCreateAdjustableArrowCap(height, width, isFilled, &nativeCap).ThrowIfFailed();
        SetNativeLineCap((GpCustomLineCap*)nativeCap);
    }
 
    private GpAdjustableArrowCap* NativeArrowCap => (GpAdjustableArrowCap*)_nativeCap;
 
    public float Height
    {
        get
        {
            float height;
            PInvoke.GdipGetAdjustableArrowCapHeight(NativeArrowCap, &height).ThrowIfFailed();
            GC.KeepAlive(this);
            return height;
        }
        set
        {
            PInvoke.GdipSetAdjustableArrowCapHeight(NativeArrowCap, value).ThrowIfFailed();
            GC.KeepAlive(this);
        }
    }
 
    public float Width
    {
        get
        {
            float width;
            PInvoke.GdipGetAdjustableArrowCapWidth(NativeArrowCap, &width).ThrowIfFailed();
            GC.KeepAlive(this);
            return width;
        }
        set
        {
            PInvoke.GdipSetAdjustableArrowCapWidth(NativeArrowCap, value).ThrowIfFailed();
            GC.KeepAlive(this);
        }
    }
 
    public float MiddleInset
    {
        get
        {
            float middleInset;
            PInvoke.GdipGetAdjustableArrowCapMiddleInset(NativeArrowCap, &middleInset).ThrowIfFailed();
            GC.KeepAlive(this);
            return middleInset;
        }
        set
        {
            PInvoke.GdipSetAdjustableArrowCapMiddleInset(NativeArrowCap, value).ThrowIfFailed();
            GC.KeepAlive(this);
        }
    }
 
    public bool Filled
    {
        get
        {
            BOOL isFilled;
            PInvoke.GdipGetAdjustableArrowCapFillState(NativeArrowCap, &isFilled).ThrowIfFailed();
            GC.KeepAlive(this);
            return isFilled;
        }
        set
        {
            PInvoke.GdipSetAdjustableArrowCapFillState(NativeArrowCap, value).ThrowIfFailed();
            GC.KeepAlive(this);
        }
    }
}