ActivateElements

導入

v1.0

詳細

3D オブジェクトをアクティブ エレメントのリストに追加します。

アクティブ エレメントとは、選択可能なコンポーネントを持つオブジェクトです(ポイント、ポリゴン、エッジなど)。

アクティブ エレメントは特殊な色で強調表示されます(たとえば、黄色)。

注: SelectionList 引数にエラーが含まれる場合、コマンドは失敗します。

スクリプト構文

ActivateElements( [SelectionList] );

パラメータ

パラメータ タイプ 説明
SelectionList 文字列 有効にする 3D オブジェクトのリスト

デフォルト値: 現在選択されている値

VBScript の例

' This example uses ActivateElements to make selection of components 

' (in this case points) possible on the cylinder called "cylinder".

NewScene

CreatePrim "Cylinder", "MeshSurface"

CreatePrim "Cylinder", "MeshSurface"

Translate , 3.48352677058841, 0.127331217177334, -1.27331217177334E-02, _

		siRelative, siView, siObj, siXYZ

SetSelFilter "point"

ActivateElements "cylinder"

logMessage "cylinder should now be highlighted in yellow"

logMessage "and ready to accept selection of points components"

関連項目

DeactivateElements SetActiveElements SetAndToggleActiveElements ToggleActiveElements