public CellPropertyAllocationData GetCopy()
        {
            CellPropertyAllocationData data = new CellPropertyAllocationData();

            data.type               = this.type;
            data.active             = this.active;
            data.measureRef         = this.measureRef;
            data.allocationTree     = this.allocationTree;
            data.showGridInShortcut = this.showGridInShortcut;
            return(data);
        }
Пример #2
0
 public void setAllocationData(CellPropertyAllocationData data)
 {
     this.isCellPropertyAllocationData = true;
     this.cellPropertyAllocationData   = data;
 }