ObjectDump



Your Ad Here

Returns a detailed description of an object.

Syntax

Rhino.ObjectDump (strObject [, intType])

Parameters

strObject

Required.  String.  The identifier of the object.

intType

Optional.  The type of dump.  The acceptable values are as follows:

0 (default)

Returns both geometry and attribute details. This is equivalent to the results of the What command.

1

Returns geometry details.

2

Returns attribute details.

3

Returns detailed technical information about the data structure of the object. This is equivalent to the results of the List command.

Returns

String

A detailed description of the object is successful.

Null

If not successful, or on error.

Example

Dim strObject, strDump

strObject = Rhino.GetObject("Select object")

If strObject <> vbNull Then

strDump = Rhino.ObjectDump(strObject)

MsgBox strDump

End If

Also See

ObjectDescription

ObjectType

Return to Rhino Index


Your Ad Here