Inheritance: System.Collections.CollectionBase
        public ActionComponent[] GetActions()
        {
            Wrapper.ActionCollection acts = ((Wrapper.ActionGroup)backend).Actions;

            ArrayList comps = new ArrayList(acts.Count);

            for (int n = 0; n < acts.Count; n++)
            {
                ActionComponent ac = (ActionComponent)app.GetComponent(acts[n], null, null);
                if (ac != null)
                {
                    comps.Add(ac);
                }
            }

            return((ActionComponent[])comps.ToArray(typeof(ActionComponent)));
        }
Esempio n. 2
0
 public ActionGroup()
 {
     actions = new ActionCollection(this);
 }
Esempio n. 3
0
		public ActionGroup ()
		{
			actions = new ActionCollection (this);
		}