ComponentFactory.Krypton.Toolkit.PaletteRedirectTriple.GetBorderColorAngle C# (CSharp) Method

GetBorderColorAngle() public method

Gets the color border angle.
public GetBorderColorAngle ( PaletteBorderStyle style, PaletteState state ) : float
style PaletteBorderStyle Border style.
state PaletteState Palette value should be applicable to this state.
return float
        public override float GetBorderColorAngle(PaletteBorderStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

            if (inherit != null)
                return inherit.PaletteBorder.GetBorderColorAngle(state);
            else
                return Target.GetBorderColorAngle(style, state);
        }
PaletteRedirectTriple