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

GetContentShortTextV() public method

Gets the vertical relative alignment of the short text.
public GetContentShortTextV ( PaletteContentStyle style, PaletteState state ) : PaletteRelativeAlign
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return PaletteRelativeAlign
        public override PaletteRelativeAlign GetContentShortTextV(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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