Example #1
0
 public void SetExtDic(DicED dicFront, Document doc)
 {
     SetDataValues(dicFront?.GetRec("GroupRec")?.Values, doc);
     SelectRegion = GetSelectRegionFromDict(dicFront?.GetInner("SelectRegion"));
     Options      = new FrontGroupOptions();
     Options.SetExtDic(dicFront?.GetInner("Options"), doc);
 }
Example #2
0
 public FrontGroup(Extents3d selReg, FrontModel front)
 {
     Front           = front;
     SelectRegion    = selReg;
     Name            = DefineNewName();
     Options         = new FrontGroupOptions();
     FrontLevel      = 2;
     IsVisualFrontOn = true; // По умолчанию для новой группы добавляемой пользователем - включана визуализация
     IsInitialized   = true;
 }
Example #3
0
 public bool Equals(FrontGroupOptions other)
 {
     return(Window.Equals(other.Window));
 }
Example #4
0
 public HouseOptions(FrontGroupOptions options)
 {
     Window = options.Window;
 }