 | APIgetCheckLogName Method |
Get the log entry name for a specific node/element check.
REST path: /res/check/logname/[ID]/[lc]/[t]/[station]
REST verb: GET
Namespace: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.2.4 (2.6.2.4)
Syntaxpublic string getCheckLogName(
string ID,
string lc,
string t,
string station = ""
)
Public Function getCheckLogName (
ID As String,
lc As String,
t As String,
Optional station As String = ""
) As String
Dim instance As API
Dim ID As String
Dim lc As String
Dim t As String
Dim station As String
Dim returnValue As String
returnValue = instance.getCheckLogName(ID,
lc, t, station)
public:
String^ getCheckLogName(
String^ ID,
String^ lc,
String^ t,
String^ station = L""
)
member getCheckLogName :
ID : string *
lc : string *
t : string *
?station : string
(* Defaults:
let _station = defaultArg station ""
*)
-> string Parameters
- ID String
- ID of the node/element that has been checked
- lc String
- Loadcase containing results
- t String
- Reference time for results. For linear analyses, use "1".
- station String (Optional)
- 1 for I, 2 for ¼, 3 for M, 4 for ¾, 5 for J. Parameter is passed as string in order to account special cases. Empty (or 6) for node checking
Return Value
StringThe log entry name that should be in program cache if the node/element has already been checked
See Also