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.

説明

ハンドルで指定した図形の選択状態を返します。図形が選択されている場合は、TRUEを返します。

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. 図形のハンドル