DSelectAll Selection 
MiniCAD

VectorScript Declaration:

PROCEDURE   DSelectAll
;

Python:

def  vs.DSelectAll():
   return None

Description:

Procedure DSelectAll deselects all selected visible objects on the active layer of a Vectorworks document. If Layer Options is set to Show-Snap-Modify Others, then DSelectAll will deselect all selected visible objects within the document.




  NumSelectedObjects Selection 
Vectorworks 2010

VectorScript Declaration:

FUNCTION   NumSelectedObjects
:LONGINT ;

Python:

def  vs.NumSelectedObjects():
   return LONGINT

Description:

Returns the number of selected objects in all working layers.



  NumSObj Selection 
MiniCAD

VectorScript Declaration:

FUNCTION   NumSObj
( h:HANDLE ) :LONGINT ;

Python:

def  vs.NumSObj(h):
   return LONGINT

Description:

Function NumSObj returns the number of selected objects on the referenced layer.

Parameters:

h Handle to layer.



  SelectAll Selection 
MiniCAD

VectorScript Declaration:

PROCEDURE   SelectAll
;

Python:

def  vs.SelectAll():
   return None

Description:

Procedure SelectAll selects all visible objects on the active layer of a Vectorworks document.

If Layer Options is set to Show-Snap-Modify Others, then SelectAll will select all visible objects within the document.




  Selected Selection 
MiniCAD

VectorScript Declaration:

FUNCTION   Selected
( h:HANDLE ) :BOOLEAN ;

Python:

def  vs.Selected(h):
   return BOOLEAN

Description:

Function Selected returns the selection status of the referenced object.

Parameters:

h Handle to object.



  SetDSelect Selection 
MiniCAD

VectorScript Declaration:

PROCEDURE   SetDSelect
( h:HANDLE ) ;

Python:

def  vs.SetDSelect(h):
   return None

Description:

Procedure SetDSelect deselects the referenced object.

Parameters:

h Handle to object.



  SetSelect Selection 
MiniCAD

VectorScript Declaration:

PROCEDURE   SetSelect
( h:HANDLE ) ;

Python:

def  vs.SetSelect(h):
   return None

Description:

Procedure SetSelect selects the referenced object.

Parameters:

h Handle to object.