public void SetColumnHeader(int column, float width, float minWidth, float maxWidth,
                             string name, string nameTip, bool canSort = true, bool autoResize = true,
                             TextAlignment headerTextAlignment         = TextAlignment.Left)
 {
     TianGlyphUtil.SetColumn(multiColumnHeader.state, column, width, minWidth, maxWidth, name, nameTip, canSort, autoResize,
                             headerTextAlignment);
 }
        public static EditorTable CreateTable(int column, bool enabelSelectedObject = false)
        {
            var state = TianGlyphUtil.GetDefaultState();
            var mchs  = TianGlyphUtil.GetDefaultMCHS(column);

            return(new EditorTable(state, mchs, enabelSelectedObject));
        }