Пример #1
0
        public RepresentationInfoSet_SelectableChildren(string n, EffigyInfo_Collection e) : base(e.GetRepresentationType())
        {
            name = n;

            effigy_info = e;
            RegisterSetMember(name, false, true, true, true);

            selectors = new List <RepresentationInfoSetChildrenSelector>();
        }
Пример #2
0
 static public RepresentationInfoSet_SelectableChildren AddSelectableDynamicChildrenInfo(this RepresentationEngine item, EffigyInfo_Collection e)
 {
     return(item.AddSelectableDynamicChildrenInfo(RepresentationInfo.UnamedChildren, e));
 }
Пример #3
0
 static public RepresentationInfoSet_SelectableChildren AddSelectableDynamicChildrenInfo(this RepresentationEngine item, string n, EffigyInfo_Collection e)
 {
     return(item.AddAndGetInfoSet(new RepresentationInfoSet_SelectableChildren(n, e)));
 }