Exemplo n.º 1
0
 public BranchModificationMost(
     BranchModificationAction action,
     IBranch branch)
 {
     Action = action;
     Branch = branch;
 }
Exemplo n.º 2
0
 public BranchModificationMost(
     BranchModificationAction action,
     bool flag)
 {
     Action = action;
     Flag   = flag;
     Branch = null;
 }
Exemplo n.º 3
0
 public BranchModificationDisplayData(BranchModificationAction action, ref DisplayDataChangedData changeData)
 {
     Action  = action;
     Changes = changeData.Changes;
     Branch  = changeData.Branch;
     Index   = changeData.StartRow;
     Column  = changeData.Column;
     Count   = changeData.Count;
     Flag    = false;
 }
Exemplo n.º 4
0
 public BranchModificationMost(
     BranchModificationAction action,
     IBranch branch,
     int index,
     int count)
 {
     Action = action;
     Branch = branch;
     Index  = index;
     Count  = count;
     Flag   = false;
 }
Exemplo n.º 5
0
 public BranchModificationLevelShift(BranchModificationAction action, ref ShiftBranchLevelsData shiftData)
 {
     Action            = action;
     Branch            = shiftData.Branch;
     Flag              = false;
     Index             = shiftData.StartIndex;
     Count             = shiftData.Count;
     Depth             = shiftData.Depth;
     NewCount          = shiftData.NewCount;
     RemoveLevels      = shiftData.RemoveLevels;
     InsertLevels      = shiftData.InsertLevels;
     ReplacementBranch = shiftData.ReplacementBranch;
     BranchTester      = shiftData.BranchTester;
 }
Exemplo n.º 6
0
 public BranchModificationLevelShift(BranchModificationAction action, ref ShiftBranchLevelsData shiftData)
 {
     Action = action;
     Branch = shiftData.Branch;
     Flag = false;
     Index = shiftData.StartIndex;
     Count = shiftData.Count;
     Depth = shiftData.Depth;
     NewCount = shiftData.NewCount;
     RemoveLevels = shiftData.RemoveLevels;
     InsertLevels = shiftData.InsertLevels;
     ReplacementBranch = shiftData.ReplacementBranch;
     BranchTester = shiftData.BranchTester;
 }
Exemplo n.º 7
0
 public BranchModificationDisplayData(BranchModificationAction action, ref DisplayDataChangedData changeData)
 {
     Action = action;
     Changes = changeData.Changes;
     Branch = changeData.Branch;
     Index = changeData.StartRow;
     Column = changeData.Column;
     Count = changeData.Count;
     Flag = false;
 }
Exemplo n.º 8
0
 public BranchModificationMost(
     BranchModificationAction action,
     IBranch branch)
 {
     Action = action;
     Branch = branch;
 }
Exemplo n.º 9
0
 public BranchModificationMost(
     BranchModificationAction action,
     IBranch branch,
     int index,
     int count,
     bool flag)
 {
     Action = action;
     Branch = branch;
     Index = index;
     Count = count;
     Flag = flag;
 }
Exemplo n.º 10
0
 public BranchModificationMost(
     BranchModificationAction action,
     bool flag)
 {
     Action = action;
     Flag = flag;
     Branch = null;
 }