Ejemplo n.º 1
0
        public static ActionSetOCGState Create(bool indirect, GroupStateCollection GSC)
        {
            ActionSetOCGState state1 = ActionSetOCGState.Create(indirect);

            state1.GroupStateCollection = GSC;
            return(state1);
        }
Ejemplo n.º 2
0
        public static ActionSetOCGState Create(GroupStateCollection GSC)
        {
            ActionSetOCGState state1 = ActionSetOCGState.Create(true);

            state1.GroupStateCollection = GSC;
            return(state1);
        }
Ejemplo n.º 3
0
        public static ActionSetOCGState Create(bool indirect, GroupStateCollection GSC, bool preserveRB)
        {
            ActionSetOCGState state1 = ActionSetOCGState.Create(indirect);

            state1.GroupStateCollection = GSC;
            state1.preserveRB           = preserveRB;
            return(state1);
        }