PointerFromJObject |
Type | handler |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | PointerFromJObject(<pObj>)
|
Associations | com.livecode.java |
Summary | Convert a JObject into a Pointer
|
Parameters | Name | Type | Description |
---|
pObj | | The JObject to convert
|
|
Example | handler SetNativeLayerToView(in pView as JObject)
variable tViewPtr as Pointer
put PointerFromJObject(pView) into tViewPtr
set my native layer to tViewPtr
end handler
|
Values | Name | Type | Description |
---|
return | | The jobject Pointer wrapped by the JObject type
|
|
Description | Use PointerFromJObject to convert a variable of type JObject to one of
type Pointer, i.e. to extract the underlying jobject pointer from a JObject
|