Example #1
0
 public MSCCommandSyntax(string command, int[] property, RunCommandFunction rcf)
 {
     mCommand = command;
     mCommandType = CommandType.Property;
     mElementID = new int[]{};
     mInstanceID = new int[]{};
     mText = new int[]{};
     mFormat = new int[]{};
     mProperty = property;
     mRCF = rcf;
 }
Example #2
0
 public MSCCommandSyntax(string command, int[] elementID, int[] instanceID, int[] text, int[] format, bool instanceBuilder, RunCommandFunction rcf)
 {
     mCommand = command;
     mInstanceBuilder = instanceBuilder;
     mElementID = elementID;
     mInstanceID = instanceID;
     mText = text;
     mCommandType = CommandType.Command;
     mFormat = format;
     mProperty = new int[]{};
     mRCF = rcf;
 }