Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.07 KB

File metadata and controls

48 lines (39 loc) · 1.07 KB

NextDObj

Description

Function NextDObj returns the next deselected object after the referenced object in a list. If the end of the list is reached, the function returns NIL.

FUNCTION NextDObj(h : HANDLE): HANDLE;
def vs.NextDObj(h):
    return HANDLE

Parameters

Name Type Description
h HANDLE Handle to object.

Examples

VectorScript

handleToObject:=FObject;
WHILE handleToObject <> NIL DO BEGIN
SetSelect(handleToObject);
handleToObject:=NextDObj(handleToObject);
END;
{ selects all deselected objects }

Python

See Also

Relative calls:

Version

Availability: from All Versions

Category