Difference between revisions of "VS:GetCustomObjectInfo"
From Vectorworks Developer
(Edited the description as it was giving the wrong info about the return value.) |
m (1 revision) |
Latest revision as of 09:30, 12 August 2013
.VectorScript|VectorScript ..VS:Function Reference|Function Reference ..VS:Function_Reference_Appendix|Appendix
Description
Function GetCustomObjectInfo is used within plug-in object scripts to determine information about the object. Returns TRUE when (objectHand <> NIL) AND (recordHand <> NIL)FUNCTION GetCustomObjectInfo(
VAR objectName :STRING;
VAR objectHand :HANDLE;
VAR recordHand :HANDLE;
VAR wallHand :HANDLE) : BOOLEAN;
def vs.GetCustomObjectInfo(): return (BOOLEAN, objectName, objectHand, recordHand, wallHand)
Parameters
objectName STRING Returns the name of the object. objectHand HANDLE Returns a handle to the plugin object in the drawing. recordHand HANDLE Returns a handle to the record containing current parameter values. wallHand HANDLE Returns a handle to a wall, (if this object is in a wall).
Remarks
[sd 8/19/98]Version
Availability: from VectorWorks8.0See Also
VS Functions:VS Functions:
[[VS:IsNewCustomObject]]