Example #1
0
        public CustomPropertyGroup(IPlugIn plugin)
        {
            IChoicePool.DefaultChoicePoolChanged += IChoicePool_DefaultChoicePoolChanged;

            _PlugIn     = plugin;
            _properties = new CustomPropertyCollection();

            _ChoicePool         = IChoicePool.DefaultChoicePool;
            isDefaultChoicePool = true;
        }
Example #2
0
 public CustomPropertyGroup(IPlugIn plugin, Guid choicePoolId) : this(plugin)
 {
     _ChoicePool         = IChoicePool.GetChoicePoolById(choicePoolId);
     isDefaultChoicePool = false;
 }
Example #3
0
 public CustomPropertyGroup(IPlugIn plugin, IChoicePool choicePool) : this(plugin)
 {
     _ChoicePool         = choicePool;
     isDefaultChoicePool = false;
 }