ComponentFactory.Krypton.Toolkit.PaletteLayoutEventArgs.PaletteLayoutEventArgs C# (CSharp) Method

PaletteLayoutEventArgs() public method

Initialize a new instance of the PaletteLayoutEventArgs class.
public PaletteLayoutEventArgs ( bool needLayout, bool needColorTable ) : System
needLayout bool Does the layout need regenerating.
needColorTable bool Have the color table values changed?
return System
        public PaletteLayoutEventArgs(bool needLayout,
                                      bool needColorTable)
            : base(needLayout)
        {
            _needColorTable = needColorTable;
        }
PaletteLayoutEventArgs