Beispiel #1
0
 public PageObject(string n, PageTemplate.PageDataCommon obj, PageObjState state, int order = 999)
 {
     this.name   = n;
     this.page   = obj;
     this.state  = state;
     outputOrder = order;
 }
Beispiel #2
0
 public PageObject(string n, PageTemplate.PageDataCommon obj, int order = 999)
 {
     this.name   = n;
     this.page   = obj;
     this.state  = PageObjState.ExecuteAndSaveToDisk;
     outputOrder = order;
 }