iOS Question Get Data From NSRect

stevel05

Expert
Licensed User
Longtime User
Is it possible to get data from an NSRect Object using NativeObject or any other way?

Declaration
OBJECTIVE-C

typedef struct _NSRect { NSPoint origin; NSSize size; } NSRect;

I could extract a value from a string returned using the NativeObject AsString method, but I'm hoping there is a tidier way.

I tried assigning it to a B4i Rect object, but it was a no go.
 
Top