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

GetContentLongTextImageAlign() public method

Gets the image alignment for the long text.
public GetContentLongTextImageAlign ( PaletteContentStyle style, PaletteState state ) : PaletteRectangleAlign
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return PaletteRectangleAlign
        public override PaletteRectangleAlign GetContentLongTextImageAlign(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteContent.GetContentLongTextImageAlign(state);
            else
                return base.GetContentLongTextImageAlign(style, state);
        }