 | APIgetLoadA Method |
Returns an array of strings describing of the i-th load in the model (ID,Node,Element,Direction,Load value,Load case)
REST path: /load/getA/[i]
REST verb: GET
Namespace: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.0.0 (2.6.0.0)
Syntaxpublic string[] getLoadA(
int i
)
Public Function getLoadA (
i As Integer
) As String()
Dim instance As API
Dim i As Integer
Dim returnValue As String()
returnValue = instance.getLoadA(i)
public:
array<String^>^ getLoadA(
int i
)
member getLoadA :
i : int -> string[]
Parameters
- i Int32
- ID of the load, starting from 0.
Return Value
StringReturns a description of the i-th load in the model. Empty string if not found
See Also