ComponentFactory.Krypton.Toolkit.PaletteContent.GetContentLongTextPrefix C# (CSharp) Method

GetContentLongTextPrefix() public method

Gets the prefix drawing setting for long text.
public GetContentLongTextPrefix ( PaletteState state ) : PaletteTextHotkeyPrefix
state PaletteState Palette value should be applicable to this state.
return PaletteTextHotkeyPrefix
        public PaletteTextHotkeyPrefix GetContentLongTextPrefix(PaletteState state)
        {
            if (_longText.Prefix != PaletteTextHotkeyPrefix.Inherit)
                return _longText.Prefix;
            else
                return _inherit.GetContentLongTextPrefix(state);
        }