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

GetContentLongTextMultiLine() public method

Gets the flag indicating if multiline text is allowed for long text.
public GetContentLongTextMultiLine ( PaletteState state ) : InheritBool
state PaletteState Palette value should be applicable to this state.
return InheritBool
        public InheritBool GetContentLongTextMultiLine(PaletteState state)
        {
            if (_longText.MultiLine != InheritBool.Inherit)
                return _longText.MultiLine;
            else
                return _inherit.GetContentLongTextMultiLine(state);
        }