AddAssociation | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION AddAssociation
( ioOwnerObj :HANDLE; inKind :INTEGER; ioTargetObj :HANDLE ) :BOOLEAN ; Python:
return BOOLEAN
def vs.AddAssociation(ioOwnerObj, inKind, ioTargetObj):
GetEvent | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION GetEvent
:LONGINT ; Python:
return LONGINT
def vs.GetEvent():
GetXPropVersion | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE GetXPropVersion
( VAR outVersion:LONGINT ) ; Python:
return outVersion
def vs.GetXPropVersion():
RemoveAssociation | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION RemoveAssociation
( ioOwnerObj :HANDLE; inKind :INTEGER; ioTargetObj :HANDLE ) :BOOLEAN ; Python:
return BOOLEAN
def vs.RemoveAssociation(ioOwnerObj, inKind, ioTargetObj):
SetCntrlPtVis | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE SetCntrlPtVis
( inCustomObj :HANDLE; inContrlPtIndex :INTEGER; inIsVisible :BOOLEAN ) ; Python:
return None
def vs.SetCntrlPtVis(inCustomObj, inContrlPtIndex, inIsVisible):
SetObjPropCharVS | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION SetObjPropCharVS
( PropertyID :LONGINT; PropertyVal :CHAR ) :BOOLEAN ; Python:
return BOOLEAN
def vs.SetObjPropCharVS(PropertyID, PropertyVal):
SetObjPropDoubleVS | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION SetObjPropDoubleVS
( PropertyID :LONGINT; PropertyVal :REAL ) :BOOLEAN ; Python:
return BOOLEAN
def vs.SetObjPropDoubleVS(PropertyID, PropertyVal):
SetObjPropTxtVS | Object Events Vectorworks 2017 |
VectorScript Declaration:
FUNCTION SetObjPropTxtVS
( PropertyID :LONGINT; PropertyVal :DYNARRAY[] of CHAR ) :BOOLEAN ; Python:
return BOOLEAN
def vs.SetObjPropTxtVS(PropertyID, PropertyVal): Description:
Set a text value to an extended property.説明
拡張プロパティにテキスト型の値を設定します。
SetObjPropVS | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION SetObjPropVS
( PropertyID :LONGINT; PropertyVal :BOOLEAN ) :BOOLEAN ; Python:
return BOOLEAN
def vs.SetObjPropVS(PropertyID, PropertyVal):
vsoAddParamWidget | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoAddParamWidget
( widgetID :LONGINT; paramName :STRING; locName :STRING ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoAddParamWidget(widgetID, paramName, locName): Description:
Add a widget for parameter to appear in the Object Info Palette.説明
オブジェクト情報パレットに表示するパラメータの、ウィジェットを追加します。
vsoAddWidget | Object Events Vectorworks 2014 |
VectorScript Declaration:
FUNCTION vsoAddWidget
( widgetID :LONGINT; widgetType :LONGINT; locName :STRING ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoAddWidget(widgetID, widgetType, locName): Description:
Add a widget of the specified type and localized name to appear in the Object Info Palette.説明
データパレットに、指定した種類とローカライズ名のウィジェットを追加します。
vsoADPAddDimDef | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPAddDimDef
( message :LONGINT; startPt3X :REAL; startPt3Y :REAL; startPt3Z :REAL; endPt3X :REAL; endPt3Y :REAL; endPt3Z :REAL; dimOffset :INTEGER ) ; Python:
return None
def vs.vsoADPAddDimDef(message, startPt3, endPt3, dimOffset): Description:
Add a dimension definition data to the result for the Auto Dimension GetDimensionDefinitions (78) message sent to a Script object.説明
スクリプトオブジェクトに送信された 「Auto Dimension GetDimensionDefinitions (78) 」メッセージに返すデータに、寸法定義データを追加します。
vsoADPAddDimPlace | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPAddDimPlace
( message :LONGINT; dimType :INTEGER ) ; Python:
return None
def vs.vsoADPAddDimPlace(message, dimType): Description:
Add a dimension placement to a dimension type result that has begun for the Auto Dimension GetSupportedTypes (77) message sent to a Script object.説明
スクリプトオブジェクトに送信された「Auto Dimension Get Supported Types (77)」メッセージが開始した寸法タイプ結果に、寸法配置を追加します。
vsoADPBeginDimType | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPBeginDimType
( message :LONGINT; universalName :DYNARRAY[] of CHAR; localizedName :DYNARRAY[] of CHAR ) ; Python:
return None
def vs.vsoADPBeginDimType(message, universalName, localizedName): Description:
Begin providing the dimension type result for the Auto Dimension GetSupportedTypes (77) message sent to a Script object.説明
スクリプトオブジェクトに送信された 「Auto Dimension Get Supported Types (77)」 メッセージの寸法タイプ結果を提供開始します。
vsoADPGetDimDefParms | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPGetDimDefParms
( message :LONGINT; VAR viewType :INTEGER; VAR universalName :DYNARRAY[] of CHAR; VAR dimType :INTEGER ) ; Python:
return (viewType, universalName, dimType)
def vs.vsoADPGetDimDefParms(message): Description:
Retrieve the parameters from the Auto Dimension GetDimensionDefinitions (78) message sent to a Script object.説明
スクリプトオブジェクトに送られた「Auto Dimension Get Dimension Definitions (78) 」メッセージからパラメータを取得します。
vsoADPGetUniTypeName | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPGetUniTypeName
( message :LONGINT; VAR universalName :DYNARRAY[] of CHAR ) ; Python:
return universalName
def vs.vsoADPGetUniTypeName(message): Description:
Retrieve the universal type name parameter from the Auto Dimension GetLocalizedTypeName (76) message sent to a Script object.説明
スクリプトオブジェクトに送信された「Auto Dimension Get Localized TypeName (76) 」メッセージからユニバーサルタイプ名パラメータを取得します。
vsoADPGetViewType | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPGetViewType
( message :LONGINT; VAR viewType :INTEGER ) ; Python:
return viewType
def vs.vsoADPGetViewType(message): Description:
Retrieve the view type parameter from the Auto Dimension GetSupportedTypes (77) message sent to a Script object.説明
スクリプトオブジェクトに送信された「Auto Dimension Get Supported Types (77) 」メッセージから表示タイプパラメータを取得します。
vsoADPSetCatName | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPSetCatName
( message :LONGINT; universalName :DYNARRAY[] of CHAR; localizedName :DYNARRAY[] of CHAR ) ; Python:
return None
def vs.vsoADPSetCatName(message, universalName, localizedName): Description:
Sets the universal type name parameter and localized name parameter for the Auto Dimension GetDisplayCategoryName (79) message sent to a Script object.説明
スクリプトオブジェクトに送信された「Auto Dimension Get Display Category Name (79)」メッセージにユニバーサルタイプ名パラメータとローカライズ名パラメータを設定します。
vsoADPSetLocTypeName | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoADPSetLocTypeName
( message :LONGINT; localizedName :DYNARRAY[] of CHAR ) ; Python:
return None
def vs.vsoADPSetLocTypeName(message, localizedName): Description:
Provide the localized type name result for the Auto Dimension GetLocalizedTypeName (76) message sent to a Script object.説明
スクリプトオブジェクトに送信された「Auto Dimension Get Localized Type Name (76) 」メッセージにローカライズタイプ名の結果を提供します。
vsoAppendParamWidget | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoAppendParamWidget
( parameterID :LONGINT; text :STRING; data :LONGINT ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoAppendParamWidget(parameterID, text, data): Description:
Sets a widget to appear at the end of the widgets in the Object Info Palette.説明
オブジェクト情報パレットの、最後に表示するウィジェットを設定します。
vsoAppendWidget | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoAppendWidget
( widgetType :LONGINT; mappingID :LONGINT; text :STRING; data :LONGINT ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoAppendWidget(widgetType, mappingID, text, data): Description:
Sets a widget to appear at the end of the widgets in the Object Info Palette.説明
オブジェクト情報パレットの、最後に表示するウィジェットを設定します。
vsoButtonGetResource | Object Events Vectorworks 2018 |
VectorScript Declaration:
FUNCTION vsoButtonGetResource
( paramName :STRING; objectType :INTEGER; folderSpec :INTEGER; folderName :STRING ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoButtonGetResource(paramName, objectType, folderSpec, folderName): Description:
Show a resource popup from the current shape pane button (while handing action 35: {ParametricUIButtonHitMessage::kAction}). Parameter name is a string that will receive the resource name.説明
ボタンからリソースポップアップを表示します (ハンドルするイベント 35: {ParametricUIButtonHitMessage::kAction})。 パラメータにはリソース名を指定します。
vsoCanEditParam | Object Events Vectorworks 2017 |
VectorScript Declaration:
PROCEDURE vsoCanEditParam
( canEditParam:BOOLEAN ) ; Python:
return None
def vs.vsoCanEditParam(canEditParam): Description:
Inticated whether a parameter can edited by a worksheet説明
パラメータをワークシートから編集できるようにするかどうか指定します。
vsoContextM_Add | Object Events Vectorworks 2014 |
VectorScript Declaration:
PROCEDURE vsoContextM_Add
( locName :STRING; itemID :INTEGER; helpID :STRING ) ; Python:
return None
def vs.vsoContextM_Add(locName, itemID, helpID): Description:
Deprecated, use vsoContextM_AddN instead説明
ObjectContextMenuEvent::kAction_Initイベントでオブジェクトのコンテキストメニューに項目を追加します。
vsoContextM_AddN | Object Events Vectorworks 2017 |
VectorScript Declaration:
PROCEDURE vsoContextM_AddN
( locName :STRING; itemID :INTEGER; helpID :STRING; helpStr :STRING ) ; Python:
return None
def vs.vsoContextM_AddN(locName, itemID, helpID, helpStr): Description:
Add an item to the context menu of the object during ObjectContextMenuEvent::kAction_Init event.説明
ObjectContextMenuEvent::kAction_Initイベントでオブジェクトのコンテキストメニューに項目を追加します。
vsoContextM_AddSep | Object Events Vectorworks 2014 |
VectorScript Declaration:
PROCEDURE vsoContextM_AddSep
( itemID:INTEGER ) ; Python:
return None
def vs.vsoContextM_AddSep(itemID): Description:
Add a separator to the context menu of the object during ObjectContextMenuEvent::kAction_Init event.説明
ObjectContextMenuEvent::kAction_Initイベントでオブジェクトのコンテキストメニューに仕切り線を追加します
vsoContextM_Check | Object Events Vectorworks 2014 |
VectorScript Declaration:
PROCEDURE vsoContextM_Check
( itemID :INTEGER; check :BOOLEAN ) ; Python:
return None
def vs.vsoContextM_Check(itemID, check): Description:
Check an item in the context menu of the object during ObjectContextMenuEvent::kAction_Init event.説明
ObjectContextMenuEvent::kAction_Initイベントでオブジェクトのコンテキストメニューの項目を確認します。
vsoContextM_Enable | Object Events Vectorworks 2014 |
VectorScript Declaration:
PROCEDURE vsoContextM_Enable
( itemID :INTEGER; enable :BOOLEAN ) ; Python:
return None
def vs.vsoContextM_Enable(itemID, enable): Description:
Enable an item in the context menu of the object during ObjectContextMenuEvent::kAction_Init event.説明
ObjectContextMenuEvent::kAction_Initイベントでオブジェクトのコンテキストメニューの項目を有効にします。
vsoContextM_GetItem | Object Events Vectorworks 2014 |
VectorScript Declaration:
FUNCTION vsoContextM_GetItem
:INTEGER ; Python:
return INTEGER
def vs.vsoContextM_GetItem(): Description:
Get selected object context menu item during ObjectContextMenuEvent::kAction_Event event.説明
kObjOnContextMenuEventイベントで、オブジェクトのコンテキストメニューで選択された項目を取得します。
vsoDisableAttrs | Object Events Vectorworks 2020 |
VectorScript Declaration:
PROCEDURE vsoDisableAttrs
( attrsBits:LONGINT ) ; Python:
return None
def vs.vsoDisableAttrs(attrsBits):
vsoEIDataGetContext | Object Events Vectorworks 2023.4 |
VectorScript Declaration:
FUNCTION vsoEIDataGetContext
( message:LONGINT ) :INTEGER ; Python:
return INTEGER
def vs.vsoEIDataGetContext(message): Description:
Gets the equipment item data context from the ParametricEquipmentItemDataMessage(92) message sent to a Script object.説明
Scriptオブジェクトに送信されたParametricEquipmentItemDataMessage(92) メッセージから、機器アイテムのデータコンテキストを取得します。
vsoEquipItemDataGet | Object Events Vectorworks 2023.4 |
VectorScript Declaration:
FUNCTION vsoEquipItemDataGet
( message :LONGINT; dataIndex :INTEGER; VAR outValue :STRING ) :BOOLEAN ; Python:
return (BOOLEAN, outValue)
def vs.vsoEquipItemDataGet(message, dataIndex): Description:
Gets the specified equipment item data from the ParametricEquipmentItemDataMessage(92) message sent to a Script object based on the dataIndex. Returns false if this value is not available.説明
Scriptオブジェクトに送信されたParametricEquipmentItemDataMessage(92) メッセージから、dataIndexに基づいて指定された機器アイテムデータを取得します。この値がない場合はfalseを返します。
vsoEquipItemDataSet | Object Events Vectorworks 2023.4 |
VectorScript Declaration:
PROCEDURE vsoEquipItemDataSet
( message :LONGINT; dataIndex :INTEGER; dataValue :STRING ) ; Python:
return None
def vs.vsoEquipItemDataSet(message, dataIndex, dataValue): Description:
Sets the specified equipment item data in the ParametricEquipmentItemDataMessage(92) message sent to a Script object based on the dataIndex.説明
Scriptオブジェクトに送信されるParametricEquipmentItemDataMessage(92)メッセージの指定された機器アイテムデータをdataIndexに基づいて設定します。
vsoGetCatalogPath | Object Events Vectorworks 2018 |
VectorScript Declaration:
PROCEDURE vsoGetCatalogPath
( folderSpec :INTEGER; relativePath :STRING ) ; Python:
return None
def vs.vsoGetCatalogPath(folderSpec, relativePath): Description:
Get the folder specifier and options path for an object catalog説明
オブジェクトカタログのフォルダ番号と相対パスを取得します。
vsoGetCWInfo | Object Events Vectorworks 2015 |
VectorScript Declaration:
PROCEDURE vsoGetCWInfo
( VAR width :REAL; VAR height :REAL; VAR centerX :REAL; VAR centerY :REAL; VAR index :INTEGER ) ; Python:
return (width, height, centerX, centerY, index)
def vs.vsoGetCWInfo(): Description:
Gets the information about the panel and position of an object being inserted by the curtain wall tool説明
カーテンウォール編集ツールでオブジェクトを配置するパネルの情報のうち、配置する長方形の中心点の位置と幅および高さを返します。
vsoGetEventInfo | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoGetEventInfo
( VAR outObjEvent :LONGINT; VAR outEventData :LONGINT ) ; Python:
return (outObjEvent, outEventData)
def vs.vsoGetEventInfo(): Description:
Gets the complete message information associated with an object event.説明
オブジェクトイベントに関する、コンプリートなメッセージ情報を取得します。
vsoGetHandingInfo | Object Events Vectorworks 2024 |
VectorScript Declaration:
PROCEDURE vsoGetHandingInfo
( message :LONGINT; isz_index :INTEGER; displayName :STRING; currentValue :REAL; defaultValue :REAL; readOnly :BOOLEAN; isSupported :BOOLEAN ) ; Python:
return None
def vs.vsoGetHandingInfo(message, isz_index, displayName, currentValue, defaultValue, readOnly, isSupported): Description:
Gets the Handing parameter information.説明
開き勝手のパラメータ情報を取得します。
vsoGetIntSizeInfo | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoGetIntSizeInfo
( message :LONGINT; isz_index :INTEGER; displayName :STRING; currentValue :REAL; defaultValue :REAL; readOnly :BOOLEAN; isSupported :BOOLEAN ) ; Python:
return None
def vs.vsoGetIntSizeInfo(message, isz_index, displayName, currentValue, defaultValue, readOnly, isSupported): Description:
Gets the parameter information needed for interactive sizing.説明
インタラクティブサイジングに必要なパラメータ情報を取得します。
vsoGetPluginStyleSym | Object Events Vectorworks 2017 |
VectorScript Declaration:
PROCEDURE vsoGetPluginStyleSym
( VAR hSymDef:HANDLE ) ; Python:
return hSymDef
def vs.vsoGetPluginStyleSym(): Description:
Allow an object to use its own implementation in creating and maintaining a plugin style説明
オブジェクトにプラグインスタイルを適用可能とするために使用します。
vsoGetQTOFunction | Object Events Vectorworks 2022 |
VectorScript Declaration:
PROCEDURE vsoGetQTOFunction
( hObject :HANDLE; VAR functionIndex :INTEGER; VAR option :DYNARRAY[] of CHAR ) ; Python:
return (functionIndex, option)
def vs.vsoGetQTOFunction(hObject): Description:
Get the requested function during event 84 (kParametricGetQTOValue). The function and the option will determine what value needs to be returned during this event by calling vsoSetQTOValue.説明
イベント84(kParametricGetQTOValue)中に要求された関数を取得します。 関数とオプションは、vsoSetQTOValueを呼び出すことにより、このイベント中に返される必要のある値を決定します。
vsoGetUseLyrCutPlane | Object Events Vectorworks 2017 |
VectorScript Declaration:
PROCEDURE vsoGetUseLyrCutPlane
( usingLyrCutPLane:BOOLEAN ) ; Python:
return None
def vs.vsoGetUseLyrCutPlane(usingLyrCutPLane): Description:
Inticated whether an object is observing the layer cut plane説明
オブジェクトがレイヤの切断面と連動するかどうかを指定します。
vsoInsertAllParams | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoInsertAllParams
:BOOLEAN ; Python:
return BOOLEAN
def vs.vsoInsertAllParams(): Description:
Inserts all parameters of the plug-in object as widgets to appear in the Object Info Palette.説明
プラグインオブジェクトの全てのパラメータを、オブジェクト情報パレットに表示するウィジェットとして、挿入します。
vsoInsertParamWidget | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoInsertParamWidget
( position :LONGINT; parameterID :LONGINT; text :STRING; data :LONGINT ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoInsertParamWidget(position, parameterID, text, data): Description:
Sets a widget to appear in the Object Info Palette.説明
オブジェクト情報パレットに表示するウィジェットを設定します。
vsoInsertWidget | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoInsertWidget
( paramID :LONGINT; widgetType :LONGINT; mappingID :LONGINT; text :STRING; data :LONGINT ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoInsertWidget(paramID, widgetType, mappingID, text, data): Description:
Sets a widget to appear in the Object Info Palette.説明
オブジェクト情報パレットに表示するウィジェットを設定します。
vsoParamName2Index | Object Events Vectorworks 2015 |
VectorScript Declaration:
FUNCTION vsoParamName2Index
( formatName :STRING; paramUnivName :STRING ) :INTEGER ; Python:
return INTEGER
def vs.vsoParamName2Index(formatName, paramUnivName): Description:
Return the zero-based index of a prameter specified by its universal name. Return -1 if not found.説明
パラメータのユニバーサルな名前から、その項目番号を返します。なかった場合-1を返します。
vsoPFCGetContext | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoPFCGetContext
( message :LONGINT; VAR context :INTEGER; VAR viewType :INTEGER; VAR bgRenderMode :INTEGER; VAR fgRenderMode :INTEGER ) ; Python:
return (context, viewType, bgRenderMode, fgRenderMode)
def vs.vsoPFCGetContext(message): Description:
Retrieve the context parameters from the PrepareForContext (79) message sent to a Script object.説明
スクリプトオブジェクトに送信された「PrepareForContext (79) 」メッセージからコンテキストパラメータを取得します。
vsoPFCSetChanged | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoPFCSetChanged
( message :LONGINT; didChange :BOOLEAN ) ; Python:
return None
def vs.vsoPFCSetChanged(message, didChange): Description:
Provide the object Changed result for the PrepareForContext (79) message sent to a Script object.説明
スクリプトオブジェクトに送信された「PrepareForContext(79)」メッセージのオブジェクトのChanged結果を提供します。
vsoPreModifyID | Object Events Vectorworks 2024 |
VectorScript Declaration:
FUNCTION vsoPreModifyID
( message:LONGINT ) :INTEGER ; Python:
return INTEGER
def vs.vsoPreModifyID(message): Description:
Sends the event to a Script object before modifying.説明
スクリプトオブジェクトの編集前にイベントを送信します。
vsoPrmName2WidgetID | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoPrmName2WidgetID
( recName :STRING; paramName :STRING; VAR outWidgetID :LONGINT ) :BOOLEAN ; Python:
return (BOOLEAN, outWidgetID)
def vs.vsoPrmName2WidgetID(recName, paramName):
vsoSetClosureGap | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoSetClosureGap
( leftGapValue :REAL; rightGapValue :REAL; topGapValue :REAL; bottomGapValue :REAL ) ; Python:
return None
def vs.vsoSetClosureGap(leftGapValue, rightGapValue, topGapValue, bottomGapValue): Description:
Provide a Gap for Left, Right, Top, Bottom edge of Wall Closure説明
壁との取り合い設定の左、右、上、下の端にズレを設定します。
vsoSetEventResult | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoSetEventResult
( inEventResult:LONGINT ) ; Python:
return None
def vs.vsoSetEventResult(inEventResult):
vsoSetGlazingArea | Object Events Vectorworks 2020 |
VectorScript Declaration:
PROCEDURE vsoSetGlazingArea
( GlazingArea:REAL ) ; Python:
return None
def vs.vsoSetGlazingArea(GlazingArea):
vsoSetHandingInfo | Object Events Vectorworks 2024 |
VectorScript Declaration:
PROCEDURE vsoSetHandingInfo
( message :LONGINT; isz_index :INTEGER; VAR newValue :REAL; VAR isSupported :BOOLEAN ) ; Python:
return (newValue, isSupported)
def vs.vsoSetHandingInfo(message, isz_index): Description:
Sets the Handing parameter values.説明
開き勝手のパラメータ情報を設定します。
vsoSetInCurtainWall | Object Events Vectorworks 2015 |
VectorScript Declaration:
PROCEDURE vsoSetInCurtainWall
( inCurtainWall:BOOLEAN ) ; Python:
return None
def vs.vsoSetInCurtainWall(inCurtainWall): Description:
Used during event 52 to retrun whether an object is a Curtain Wall object説明
イベント52でオブジェクトがカーテンウォールオブジェクトかどうかの情報を取得します。
vsoSetIntSizeInfo | Object Events Vectorworks 2023 |
VectorScript Declaration:
PROCEDURE vsoSetIntSizeInfo
( message :LONGINT; isz_index :INTEGER; VAR newValue :REAL; VAR isSupported :BOOLEAN ) ; Python:
return (newValue, isSupported)
def vs.vsoSetIntSizeInfo(message, isz_index): Description:
Sets the parameter values after interactive sizing.説明
インタラクティブなサイズ調整後のパラメータ値を設定する。
vsoSetObjToolName | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoSetObjToolName
( eventData :LONGINT; toolName :STRING ) ; Python:
return None
def vs.vsoSetObjToolName(eventData, toolName): Description:
Set ToolName for similar object creation. Used inside ParametricGetToolNameMessage::kAction event.説明
類似オブジェクト作成のために、ツール名を設定します。kObjOnGetToolNameイベント内で使用します。
vsoSetQTOValue | Object Events Vectorworks 2022 |
VectorScript Declaration:
PROCEDURE vsoSetQTOValue
( valueType :INTEGER; int :INTEGER; real :REAL; string :DYNARRAY[] of CHAR ) ; Python:
return None
def vs.vsoSetQTOValue(valueType, int, real, string): Description:
Set a requested QTO value during event 84 (kParametricGetQTOValue). Check the requested QTO value by using vsoGetQTOFunction. 'valueType' [0:real; 1:integer; 2:string] determines which parameter is considered for the value, the others can be empty (zero).説明
イベント84中に要求されたQTO値を設定します(kParametricGetQTOValue)。 vsoGetQTOFunctionを使用して、要求されたQTO値を確認します。 'valueType' [0:real; 1:integer; 2:string]は、値に対して考慮されるパラメーターを決定します。他のパラメーターは空(ゼロ)にすることができます。
vsoSetSubtractPanels | Object Events Vectorworks 2015 |
VectorScript Declaration:
PROCEDURE vsoSetSubtractPanels
( inSubtractPanels:BOOLEAN ) ; Python:
return None
def vs.vsoSetSubtractPanels(inSubtractPanels): Description:
Used during event 58 to retrun whether a curtain wall object will have the wall subtract the panel from the frames説明
イベント58でカーテンウォールオブジェクトの中のパネルがフレームからインセットしているかどうかを返します。
vsoStateAddCurrent | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateAddCurrent
( hObj :HANDLE; message :LONGINT ) :LONGINT ; Python:
return LONGINT
def vs.vsoStateAddCurrent(hObj, message):
vsoStateClear | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoStateClear
( hObj:HANDLE ) ; Python:
return None
def vs.vsoStateClear(hObj):
vsoStateGet | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGet
( hObj :HANDLE; state :INTEGER ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoStateGet(hObj, state):
vsoStateGetExitGroup | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGetExitGroup
( hObj :HANDLE; VAR outGrpType :LONGINT ) :BOOLEAN ; Python:
return (BOOLEAN, outGrpType)
def vs.vsoStateGetExitGroup(hObj):
vsoStateGetLayrChng | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGetLayrChng
( hObj :HANDLE; VAR outOldScale :REAL; VAR outNewScale :REAL; VAR outScaleText :BOOLEAN ) :BOOLEAN ; Python:
return (BOOLEAN, outOldScale, outNewScale, outScaleText)
def vs.vsoStateGetLayrChng(hObj):
vsoStateGetNameChng | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGetNameChng
( hObj :HANDLE; VAR outOldName :STRING; VAR outNewName :STRING ) :BOOLEAN ; Python:
return (BOOLEAN, outOldName, outNewName)
def vs.vsoStateGetNameChng(hObj):
vsoStateGetObjChng | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGetObjChng
( hObj :HANDLE; VAR outChangeID :LONGINT ) :BOOLEAN ; Python:
return (BOOLEAN, outChangeID)
def vs.vsoStateGetObjChng(hObj):
vsoStateGetParamChng | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGetParamChng
( hObj :HANDLE; VAR outWidgID :LONGINT; VAR outPrmIdx :INTEGER; VAR outOldVal :STRING ) :BOOLEAN ; Python:
return (BOOLEAN, outWidgID, outPrmIdx, outOldVal)
def vs.vsoStateGetParamChng(hObj):
vsoStateGetPos | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGetPos
( hObj :HANDLE; VAR outX :REAL; VAR outY :REAL; VAR outZ :REAL; VAR outIs3D :BOOLEAN ) :BOOLEAN ; Python:
return (BOOLEAN, outX, outY, outZ, outIs3D)
def vs.vsoStateGetPos(hObj):
vsoStateGetRot | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoStateGetRot
( hObj :HANDLE; VAR outDiffAng :REAL; VAR outIs3D :BOOLEAN ) :BOOLEAN ; Python:
return (BOOLEAN, outDiffAng, outIs3D)
def vs.vsoStateGetRot(hObj):
vsoStateGetRotN | Object Events Vectorworks 2020 |
VectorScript Declaration:
FUNCTION vsoStateGetRotN
( hObj :HANDLE; VAR outDiffAng :VECTOR; VAR outIs3D :BOOLEAN ) :BOOLEAN ; Python:
return (BOOLEAN, outDiffAng, outIs3D)
def vs.vsoStateGetRotN(hObj):
vsoStateMaterialChng | Object Events Vectorworks 2020 |
VectorScript Declaration:
FUNCTION vsoStateMaterialChng
( hObj :HANDLE; VAR materialID :INTEGER; VAR deleted :BOOLEAN; VAR previousTexture :INTEGER ) :BOOLEAN ; Python:
return (BOOLEAN, materialID, deleted, previousTexture)
def vs.vsoStateMaterialChng(hObj): Description:
ObjectState event is sent to Parametric objects when Material is changed.説明
マテリアルが変更されると、ObjectStateイベントをパラメトリックオブジェクトに送るようにします。
vsoStyleWidgetChoice | Object Events Vectorworks 2017 |
VectorScript Declaration:
PROCEDURE vsoStyleWidgetChoice
( VAR choice:INTEGER ) ; Python:
return choice
def vs.vsoStyleWidgetChoice(): Description:
Get the item chosen in the Plug-in Object Style widget.説明
選択されているプラグインスタイルウィジェットの項目を取得します。
vsoWidgetGetEnable | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoWidgetGetEnable
( widgetID:LONGINT ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoWidgetGetEnable(widgetID):
vsoWidgetGetRecParam | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoWidgetGetRecParam
( widgetID:LONGINT ) :STRING ; Python:
return STRING
def vs.vsoWidgetGetRecParam(widgetID):
vsoWidgetGetText | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoWidgetGetText
( widgetID:LONGINT ) :STRING ; Python:
return STRING
def vs.vsoWidgetGetText(widgetID):
vsoWidgetGetVisible | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoWidgetGetVisible
( widgetID:LONGINT ) :BOOLEAN ; Python:
return BOOLEAN
def vs.vsoWidgetGetVisible(widgetID):
vsoWidgetPopupAdd | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetPopupAdd
( widgetID :LONGINT; id :STRING; text :STRING ) ; Python:
return None
def vs.vsoWidgetPopupAdd(widgetID, id, text):
vsoWidgetPopupAddN | Object Events Vectorworks 2020 |
VectorScript Declaration:
PROCEDURE vsoWidgetPopupAddN
( widgetID :LONGINT; isStaticChoice :BOOLEAN; id :STRING; text :STRING; toolTip :STRING; iconSpec :STRING ) ; Python:
return None
def vs.vsoWidgetPopupAddN(widgetID, isStaticChoice, id, text, toolTip, iconSpec): Description:
Add an item to an OIP search popup widget. Static item is fixed at the top of the list, unsearchable. Non static items are searchable displayed in a list.説明
オブジェクト情報パレットの検索ポップアップウィジェットにアイテムを追加します。静的アイテムはリストの先頭に固定され検索はできません。非静的アイテムはリストに表示され、検索可能です。
vsoWidgetPopupClear | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetPopupClear
( widgetID:LONGINT ) ; Python:
return None
def vs.vsoWidgetPopupClear(widgetID):
vsoWidgetPopupClearN | Object Events Vectorworks 2020 |
VectorScript Declaration:
PROCEDURE vsoWidgetPopupClearN
( widgetID :LONGINT; staticChoices :BOOLEAN ) ; Python:
return None
def vs.vsoWidgetPopupClearN(widgetID, staticChoices): Description:
For an OIP search popup widget, clears the static or dynamic choices.説明
オブジェクト情報パレットの検索ポップアップウィジェットで、静的または動的選択を解除します。
vsoWidgetPopupEnergy | Object Events Vectorworks 2016 |
VectorScript Declaration:
PROCEDURE vsoWidgetPopupEnergy
( widgetID :LONGINT; dataType :INTEGER ) ; Python:
return None
def vs.vsoWidgetPopupEnergy(widgetID, dataType): Description:
Attach a widget for energy data to appear in the Object Info Palette.説明
データパレットにエネルギー解析データのウィジェットを連結します。
VS:Energos Thirdparty Support のページを参照してください。
vsoWidgetPopupGet | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetPopupGet
( widgetID :LONGINT; index :LONGINT; VAR outId :STRING; VAR outText :STRING ) ; Python:
return (outId, outText)
def vs.vsoWidgetPopupGet(widgetID, index):
vsoWidgetPopupGetCnt | Object Events Vectorworks 2011 |
VectorScript Declaration:
FUNCTION vsoWidgetPopupGetCnt
( widgetID:LONGINT ) :LONGINT ; Python:
return LONGINT
def vs.vsoWidgetPopupGetCnt(widgetID):
vsoWidgetPopupGetID | Object Events Vectorworks 2020 |
VectorScript Declaration:
FUNCTION vsoWidgetPopupGetID
( widgetID :LONGINT; text :STRING ) :STRING ; Python:
return STRING
def vs.vsoWidgetPopupGetID(widgetID, text): Description:
For an OIP search popup widget, returns the IDName for an item specified by it's text.説明
オブジェクト情報パレットの検索ポップアップウィジェットで、文字列で指定したアイテムのIDNameを返します。
vsoWidgetPopupGetTxt | Object Events Vectorworks 2020 |
VectorScript Declaration:
FUNCTION vsoWidgetPopupGetTxt
( widgetID :LONGINT; id :STRING ) :STRING ; Python:
return STRING
def vs.vsoWidgetPopupGetTxt(widgetID, id): Description:
For an OIP search popup widget, returns the text of an item specified by it's id.説明
オブジェクト情報パレットの検索ポップアップウィジェットで、IDで指定したアイテムの文字列を返します。
vsoWidgetPopupSet | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetPopupSet
( widgetID :LONGINT; index :LONGINT; id :STRING; text :STRING ) ; Python:
return None
def vs.vsoWidgetPopupSet(widgetID, index, id, text):
vsoWidgetSetBound | Object Events Vectorworks 2012 |
VectorScript Declaration:
PROCEDURE vsoWidgetSetBound
( widgetID_Popup :LONGINT; widgetID_Offset :LONGINT; boundID :LONGINT; isTop :BOOLEAN; offsetLegPrm :STRING ) ; Python:
return None
def vs.vsoWidgetSetBound(widgetID_Popup, widgetID_Offset, boundID, isTop, offsetLegPrm):
vsoWidgetSetEnable | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetSetEnable
( widgetID :LONGINT; enabled :BOOLEAN ) ; Python:
return None
def vs.vsoWidgetSetEnable(widgetID, enabled):
vsoWidgetSetIndLvl | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetSetIndLvl
( widgetID :LONGINT; indentLevel :LONGINT ) ; Python:
return None
def vs.vsoWidgetSetIndLvl(widgetID, indentLevel):
vsoWidgetSetText | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetSetText
( widgetID :LONGINT; text :STRING ) ; Python:
return None
def vs.vsoWidgetSetText(widgetID, text):
vsoWidgetSetType | Object Events Vectorworks 2020 |
VectorScript Declaration:
PROCEDURE vsoWidgetSetType
( widgetID :LONGINT; widgetType :LONGINT ) ; Python:
return None
def vs.vsoWidgetSetType(widgetID, widgetType): Description:
Changes a type of a widget that was already added.説明
追加済みのウィジェットのタイプを変更します。
vsoWidgetSetVisible | Object Events Vectorworks 2011 |
VectorScript Declaration:
PROCEDURE vsoWidgetSetVisible
( widgetID :LONGINT; visible :BOOLEAN ) ; Python:
return None
def vs.vsoWidgetSetVisible(widgetID, visible):
vsoWSGetParamForEdit | Object Events Vectorworks 2017 |
VectorScript Declaration:
PROCEDURE vsoWSGetParamForEdit
( VAR paramName:STRING ) ; Python:
return paramName
def vs.vsoWSGetParamForEdit(): Description:
Get the parameter that a worksheet is trying to edit.説明
ワークシートで編集しようとしているパラメータ名を取得します。