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

GetContentAdjacentGap() public method

Gets the actual padding between adjacent content items.
public GetContentAdjacentGap ( PaletteState state ) : int
state PaletteState Palette value should be applicable to this state.
return int
        public int GetContentAdjacentGap(PaletteState state)
        {
            if (AdjacentGap != -1)
                return AdjacentGap;
            else
                return _inherit.GetContentAdjacentGap(state);
        }