clrGetFields: List the instance fields of a CLR object

Description Usage Arguments Value Examples

Description

List the instance fields of a CLR object

Usage

1
clrGetFields(clrobj, contains = "")

Arguments

clrobj

CLR object

contains

a string that the field names returned must contain

Value

a list of names of the fields of the CLR object

Examples

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)

jmp75/rClr documentation built on June 11, 2019, 6:45 p.m.