示例#1
0
        /// <summary>
        /// Pose un model de colonne à l'index _index.
        /// L'espace columnCount > _index doit avoir été réservé.
        /// </summary>
        public void setColumn(int _index, PM_ColumnType _type, double _width)
        {
            Contract.Requires(_index >= 0 && _index < columnCount);
            PM_GridColumn _column = new PM_GridColumn(_type, _width);

            setColumn(_index, _column);
        }
示例#2
0
 public PM_GridColumn(PM_ColumnType _type, double _width)
 {
     type       = _type;
     width      = _width;
     visibility = Visibility.Visible;
     readOnly   = PM_state.UNSET;
 }