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