ComponentFactory.Krypton.Toolkit.PaletteRedirectCommon.GetContentShortTextHint C# (CSharp) Method

GetContentShortTextHint() public method

Gets the rendering hint for the short text.
public GetContentShortTextHint ( PaletteContentStyle style, PaletteState state ) : PaletteTextHint
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return PaletteTextHint
        public override PaletteTextHint GetContentShortTextHint(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteContent.GetContentShortTextHint(state);
            else
                return base.GetContentShortTextHint(style, state);
        }