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

GetBorderGraphicsHint() public method

Gets the graphics drawing hint for the border.
public GetBorderGraphicsHint ( PaletteBorderStyle style, PaletteState state ) : PaletteGraphicsHint
style PaletteBorderStyle Border style.
state PaletteState Palette value should be applicable to this state.
return PaletteGraphicsHint
        public override PaletteGraphicsHint GetBorderGraphicsHint(PaletteBorderStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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