Description Usage Arguments Value Examples
List the instance methods of a CLR object
1 | clrGetMethods(clrobj, contains = "")
|
clrobj |
CLR object |
contains |
a string that the methods names returned must contain |
a list of names of the methods of the CLR object
1 2 3 4 5 6 7 8 | ## Not run:
library(rClr)
testClassName <- "Rclr.TestObject";
testObj <- clrNew(testClassName)
clrGetMethods(testObj)
clrGetMethods(testObj, 'Get')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.