DLDBeginLoadData Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   DLDBeginLoadData
( loadDataType:INTEGER ) ;

Python:

def  vs.DLDBeginLoadData(loadDataType):
   return None

Description:

Begin creation of load data from that type.

説明

Begin creation of load data from that type.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  DLDEndLoadData Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   DLDEndLoadData
;

Python:

def  vs.DLDEndLoadData():
   return None

Description:

Add the created data to object properties

説明

Add the created data to object properties.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  DLDSetLoadDataBool Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   DLDSetLoadDataBool
(   selector :INTEGER;
    value :BOOLEAN
) ;

Python:

def  vs.DLDSetLoadDataBool(selector, value):
   return None

Description:

Using selector, sets default load data with boolean value for the parametric object

説明

Using selector, sets default load data with boolean value for the parametric object.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  DLDSetLoadDataReal Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   DLDSetLoadDataReal
(   selector :INTEGER;
    value :REAL
) ;

Python:

def  vs.DLDSetLoadDataReal(selector, value):
   return None

Description:

Using selector, sets default load data with real value for the parametric object

説明

Using selector, sets default load data with real value for the parametric object.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  DLDSetLoadDataString Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   DLDSetLoadDataString
(   selector :INTEGER;
    value :STRING
) ;

Python:

def  vs.DLDSetLoadDataString(selector, value):
   return None

Description:

Using selector, sets default load data with string value for the parametric object

説明

Using selector, sets default load data with string value for the parametric object.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  HP_AutoAttachLoads Truss Analysis 
Vectorworks 2019

VectorScript Declaration:

PROCEDURE   HP_AutoAttachLoads
( positionHandle:HANDLE ) ;

Python:

def  vs.HP_AutoAttachLoads(positionHandle):
   return None

Description:

Using the given position handle, attaches all loads, that can be calculated as a part of the system.

説明

指定した吊り元のハンドルを使用して、システムの一部として計算できるすべての荷重を追加します。



  HP_ConvertToHangPos Truss Analysis 
Vectorworks 2019

VectorScript Declaration:

PROCEDURE   HP_ConvertToHangPos
;

Python:

def  vs.HP_ConvertToHangPos():
   return None

Description:

Invkoes the Convert To Hanging Position menu command on the systems of the selected objects.

説明

指定したオブジェクトのシステムに対し、「吊り元に変換」メニューコマンドを呼び出します。



  OLDAddLoadHangPoint Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDAddLoadHangPoint
(   handle :HANDLE;
    loadIndex :INTEGER;
    point :VECTOR;
    hasLoad :BOOLEAN
) ;

Python:

def  vs.OLDAddLoadHangPoint(handle, loadIndex, point, hasLoad):
   return None

Description:

Adds hang point of the specified load for the parametric object

説明

Adds hang point of the speciafied load for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDClearHangPtsPath Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDClearHangPtsPath
(   handle :HANDLE;
    loadIndex :INTEGER
) ;

Python:

def  vs.OLDClearHangPtsPath(handle, loadIndex):
   return None

Description:

Clears the hang points of the specified load for the parametric object

説明

Clears the hang points of the speciafied load for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDConstructMatsCnt Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDConstructMatsCnt
:LONGINT ;

Python:

def  vs.OLDConstructMatsCnt():
   return LONGINT

Description:

Returns the count of the construction materials available for truss analysis.

説明

Returns the count of the construction materials available for truss analysis.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDFindAttachHangPos Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDFindAttachHangPos
(   handle :HANDLE;
    loadIndex :INTEGER
) :HANDLE ;

Python:

def  vs.OLDFindAttachHangPos(handle, loadIndex):
   return HANDLE

Description:

Searches for a Hanging Position for the Hang Points of the given load index. Returns the Position handle if found, NIL otherwise.

説明

Searches for a Hanging Position for the Hang Points of the given load index. Returns the Position handle if found, NIL otherwise.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDForceRealToStr Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDForceRealToStr
( forceValue:REAL ) :STRING ;

Python:

def  vs.OLDForceRealToStr(forceValue):
   return STRING

Description:

Converts force real value to string and returns TRUE on success.

説明

Converts force real value to string and returns TRUE on success.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDForceStrToReal Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDForceStrToReal
(   forceString :STRING;
  VAR  realValue :REAL
) :BOOLEAN ;

Python:

def  vs.OLDForceStrToReal(forceString):
   return (BOOLEAN, realValue)

Description:

Converts force string to real number and returns the result.

説明

Converts force string to real number and returns the result.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetConstructMat Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDGetConstructMat
(   materialIndex :LONGINT;
  VAR  UniversalName :STRING;
  VAR  LocalizedName :STRING
) ;

Python:

def  vs.OLDGetConstructMat(materialIndex):
   return (UniversalName, LocalizedName)

Description:

Returns the universal and the localized names of the construction material at the given index.

説明

Returns the universal and the localized names of the construction material at the given index.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetDragSnapPoint Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDGetDragSnapPoint
VAR point:VECTOR ) :BOOLEAN ;

Python:

def  vs.OLDGetDragSnapPoint():
   return (BOOLEAN, point)

Description:

If the object has been dragged and snapped, the fuction will return TRUE and the point parameter will contain the snapping location.

説明

If the object has been dragged and snapped, the fuction will return TRUE and the point parameter will contain the snapping location.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetHangingPos Truss Analysis 
Vectorworks 2019

VectorScript Declaration:

FUNCTION   OLDGetHangingPos
(   handle :HANDLE;
    loadIndex :INTEGER
) :HANDLE ;

Python:

def  vs.OLDGetHangingPos(handle, loadIndex):
   return HANDLE

Description:

Returns handle of the Hanging Position where the specified load is attached.

説明

指定した荷重が追加されている吊り元のハンドルを返します。



  OLDGetHangPointAt Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDGetHangPointAt
(   handle :HANDLE;
    loadIndex :INTEGER;
    pointIndex :LONGINT;
  VAR  point :VECTOR;
  VAR  hasLoad :BOOLEAN
) ;

Python:

def  vs.OLDGetHangPointAt(handle, loadIndex, pointIndex):
   return (point, hasLoad)

Description:

Get hang point for given index of the specified load for the parametric object

説明

Get hang point for given index of the speciafied load for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetHangPointsCnt Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDGetHangPointsCnt
(   handle :HANDLE;
    loadIndex :INTEGER
) :LONGINT ;

Python:

def  vs.OLDGetHangPointsCnt(handle, loadIndex):
   return LONGINT

Description:

Get hang points cout of the specified load for the parametric object

説明

Get hang points cout of the speciafied load for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetLoadDataBool Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDGetLoadDataBool
(   handle :HANDLE;
    selector :INTEGER;
    loadIndex :INTEGER
) :BOOLEAN ;

Python:

def  vs.OLDGetLoadDataBool(handle, selector, loadIndex):
   return BOOLEAN

Description:

Using selector, gets load data with bool value for the parametric object

説明

Using selector, gets load data with bool value for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetLoadDataReal Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDGetLoadDataReal
(   handle :HANDLE;
    selector :INTEGER;
    loadIndex :INTEGER
) :REAL ;

Python:

def  vs.OLDGetLoadDataReal(handle, selector, loadIndex):
   return REAL

Description:

Using selector, gets load data with real value for the parametric object

説明

Using selector, gets load data with real value for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetLoadDataStr Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDGetLoadDataStr
(   handle :HANDLE;
    selector :INTEGER;
    loadIndex :INTEGER
) :STRING ;

Python:

def  vs.OLDGetLoadDataStr(handle, selector, loadIndex):
   return STRING

Description:

Using selector, gets load data with string value for the parametric object

説明

Using selector, gets load data with string value for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetMatDestiny Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDGetMatDestiny
( materialName:STRING ) :REAL ;

Python:

def  vs.OLDGetMatDestiny(materialName):
   return REAL

Description:

Returns the destiny of the specified construction material.

説明

Returns the destiny of the speciafied construction material.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDGetPositionTransf Truss Analysis 
Vectorworks 2019

VectorScript Declaration:

FUNCTION   OLDGetPositionTransf
(   handle :HANDLE;
    loadIndex :INTEGER;
  VAR  offsetDistance :VECTOR;
  VAR  rotationAngle :REAL;
  VAR  hasWitnessLine :BOOLEAN
) :BOOLEAN ;

Python:

def  vs.OLDGetPositionTransf(handle, loadIndex):
   return (BOOLEAN, offsetDistance, rotationAngle, hasWitnessLine)

Description:

Retunrs TRUE if the position, where the load is attached, is moved/rotated. Get the offset applied to the load in object local coordinates and the rotataion angle applied to the position. HasWitnessLine point weather the object is alredy connected via a witness line

説明

指定した荷重が追加されている吊り元が移動/回転されている場合にTRUEを返します。吊り元の回転角度と荷重に割り当てられているオフセットの距離をローカル座標系で返します。hasWitnessLineは、オブジェクトが吊位置表示線で接続されているかどうかを返します。



  OLDHoistSectionDlg Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDHoistSectionDlg
VAR crossSection:STRING ) :BOOLEAN ;

Python:

def  vs.OLDHoistSectionDlg():
   return (BOOLEAN, crossSection)

Description:

Show Hoist Cross Section dialog.

説明

Show Hoist Cross Section dialog.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDMassDistRealToStr Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDMassDistRealToStr
( distrMassValue:REAL ) :STRING ;

Python:

def  vs.OLDMassDistRealToStr(distrMassValue):
   return STRING

Description:

Converts distributed mass real value to string and returns TRUE on success.

説明

Converts distributed mass real value to string and returns TRUE on success.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDMassDistStrToReal Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDMassDistStrToReal
(   distrMassString :STRING;
  VAR  realValue :REAL
) :BOOLEAN ;

Python:

def  vs.OLDMassDistStrToReal(distrMassString):
   return (BOOLEAN, realValue)

Description:

Converts distributed mass string to real number and returns TRUE on success.

説明

Converts distributed mass string to real number and returns TRUE on success.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDMassRealToStr Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDMassRealToStr
( massValue:REAL ) :STRING ;

Python:

def  vs.OLDMassRealToStr(massValue):
   return STRING

Description:

Converts mass real value to string and returns the result.

説明

Converts mass real value to string and returns the result.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDMassStrToReal Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDMassStrToReal
(   massString :STRING;
  VAR  realValue :REAL
) :BOOLEAN ;

Python:

def  vs.OLDMassStrToReal(massString):
   return (BOOLEAN, realValue)

Description:

Converts mass string to real number and returns TURE on success.

説明

Converts mass string to real number and returns TURE on success.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDSelectTrussSystem Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDSelectTrussSystem
( trussHandle:HANDLE ) ;

Python:

def  vs.OLDSelectTrussSystem(trussHandle):
   return None

Description:

Using the given handle, selects the whole truss system the objects is part of.

説明

Using the given handle, selects the whole truss system the objects is part of.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDSetHangPathHandle Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDSetHangPathHandle
(   handle :HANDLE;
    loadIndex :INTEGER;
    path :HANDLE;
    height :REAL;
    deletePathHandle :BOOLEAN
) :REAL ;

Python:

def  vs.OLDSetHangPathHandle(handle, loadIndex, path, height, deletePathHandle):
   return REAL

Description:

Adds the path to the hang points of the specified load for the parametric object

説明

Adds the path to the hang points of the speciafied load for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDSetLoadDataBool Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDSetLoadDataBool
(   handle :HANDLE;
    selector :INTEGER;
    value :BOOLEAN;
    loadIndex :INTEGER
) ;

Python:

def  vs.OLDSetLoadDataBool(handle, selector, value, loadIndex):
   return None

Description:

Using selector, sets load data with bool value for the parametric object

説明

Using selector, sets load data with bool value for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDSetLoadDataReal Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDSetLoadDataReal
(   handle :HANDLE;
    selector :INTEGER;
    value :REAL;
    loadIndex :INTEGER
) ;

Python:

def  vs.OLDSetLoadDataReal(handle, selector, value, loadIndex):
   return None

Description:

Using selector, sets load data with real value for the parametric object

説明

Using selector, sets load data with real value for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDSetLoadDataStr Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

PROCEDURE   OLDSetLoadDataStr
(   handle :HANDLE;
    selector :INTEGER;
    value :STRING;
    loadIndex :INTEGER
) ;

Python:

def  vs.OLDSetLoadDataStr(handle, selector, value, loadIndex):
   return None

Description:

Using selector, sets load data with string value for the parametric object

説明

Using selector, sets load data with string value for the parametric object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDShowTrussSnapping Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDShowTrussSnapping
:BOOLEAN ;

Python:

def  vs.OLDShowTrussSnapping():
   return BOOLEAN

Description:

Call this function On Drag event to enable Braceworks snapping while dragging single object

説明

Call this function On Drag event to enable Braceworks snapping while dragging single object

BRACEWORKSの関数です。日本語版ではサポートしていません。



  OLDTrussSectionDlg Truss Analysis 
Vectorworks 2018

VectorScript Declaration:

FUNCTION   OLDTrussSectionDlg
( VAR  crossSection :STRING;
  VAR  height :REAL;
  VAR  width :REAL;
  VAR  design :INTEGER;
  VAR  chordDiameter :REAL
) :BOOLEAN ;

Python:

def  vs.OLDTrussSectionDlg():
   return (BOOLEAN, crossSection, height, width, design, chordDiameter)

Description:

Show Truss Cross Section dialog.

説明

Show Truss Cross Section dialog.

BRACEWORKSの関数です。日本語版ではサポートしていません。



  UpdatePositionParam Truss Analysis 
Vectorworks 2023

VectorScript Declaration:

PROCEDURE   UpdatePositionParam
( positionHandle:HANDLE ) ;

Python:

def  vs.UpdatePositionParam(positionHandle):
   return None

Description:

Using the given position handle, changes the 'Position' parameter for all loads.

説明

指定したpositionハンドルを使用して、すべての荷重の 「吊り元」パラメータを変更します。