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