cPointObj GetLoadForce Method CSi API ETABS 2015
Retrieves the joint force load assignments to point objects.

Namespace: ETABS2015
Assembly: ETABS2015 (in ETABS2015.dll) Version: 15.0.0.0 (15.0.0.0)
Syntax

int GetLoadForce(
	string Name,
	ref int NumberItems,
	ref string[] PointName,
	ref string[] LoadPat,
	ref int[] LcStep,
	ref string[] CSys,
	ref double[] F1,
	ref double[] F2,
	ref double[] F3,
	ref double[] M1,
	ref double[] M2,
	ref double[] M3,
	eItemType ItemType = eItemType.Objects
)

Parameters

Name
Type: OnlineSystem String
The name of an existing point object or group depending on the value of the ItemType item.
NumberItems
Type: OnlineSystem Int32 
This is the total number of joint force load assignments returned.
PointName
Type:  OnlineSystem String  
This is an array that includes the name of the point object to which the specified joint force load assignment applies.
LoadPat
Type:  OnlineSystem String  
This is an array that includes the name of the load pattern for the joint force load.
LcStep
Type:  OnlineSystem Int32  
CSys
Type:  OnlineSystem String  
This is an array that includes the name of the coordinate system for the joint force load. This is Local or the name of a defined coordinate system.
F1
Type:  OnlineSystem Double  
This is an array that includes the assigned translational force in the local 1-axis or coordinate system X-axis direction, depending on the specified CSys. [L]
F2
Type:  OnlineSystem Double  
This is an array that includes the assigned translational force in the local 2-axis or coordinate system Y-axis direction, depending on the specified CSys. [L]
F3
Type:  OnlineSystem Double  
This is an array that includes the assigned translational force in the local 3-axis or coordinate system Z-axis direction, depending on the specified CSys. [L]
M1
Type:  OnlineSystem Double  
This is an array that includes the assigned moment about the local 1-axis or coordinate system X-axis, depending on the specified CSys. [rad]
M2
Type:  OnlineSystem Double  
This is an array that includes the assigned moment about the local 2-axis or coordinate system Y-axis, depending on the specified CSys. [rad]
M3
Type:  OnlineSystem Double  
This is an array that includes the assigned moment about the local 3-axis or coordinate system Z-axis, depending on the specified CSys. [rad]
ItemType (Optional)
Type: ETABS2015 eItemType
This is one of the following items in the eItemType enumeration:
  • Object = 0
  • Group = 1
  • SelectedObjects = 2

If this item is Objects, the load assignments are retrieved for the point object specified by the Name item.

If this item is Group, the load assignments are retrieved for all point objects in the group specified by the Name item.

If this item is SelectedObjects, the load assignments are retrieved for all selected point objects and the Name item is ignored.

Return Value

Returns zero if the load assignments are successfully retrieved, otherwise it returns a nonzero value.
Remarks

Examples

See Also