Example #1
0
 private object Invoke(string command, object parameter, object parameter2)
 {
     return(Late.Invoke(oDocumentLayerInterface, command, new object[] { parameter, parameter2 }));
 }
Example #2
0
 private object Invoke(string command, object parameter)
 {
     return(Late.Invoke(oDocumentLayerInterface, command, parameter));
 }
Example #3
0
 public WirecastDocument DocumentByName(string name, CompareMethod compareMethod)
 {
     return(new WirecastDocument(Late.Invoke(oWirecast, "DocumentByName",
                                             new object[] { name, (int)compareMethod })));
 }
Example #4
0
 private object Invoke(string command)
 {
     return(Late.Invoke(oDocumentLayerInterface, command));
 }
Example #5
0
 public WirecastDocument DocumentByIndex(int index)
 {
     return(WirecastDocument.CreateFromObject(index, Late.Invoke(oWirecast, "DocumentByIndex", index)));
 }