 | APIgetSectionProperty Method |
Get selected property of a section
REST path: /section/prop/[ID]/[name]
REST verb: GET
Namespace: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.8.1.2 (2.8.1.2)
Syntaxpublic string getSectionProperty(
string ID,
string name
)
Public Function getSectionProperty (
ID As String,
name As String
) As String
Dim instance As API
Dim ID As String
Dim name As String
Dim returnValue As String
returnValue = instance.getSectionProperty(ID,
name)
public:
String^ getSectionProperty(
String^ ID,
String^ name
)
member getSectionProperty :
ID : string *
name : string -> string function getSectionProperty(ID, name);
Parameters
- ID String
- ID of the section
- name String
- Name of the property: name, code, material, type (0 unk, 1 beam, 2 planar),
beamtype (0 unk, 1 rect, 2 circ, 3 C, 4 T, 5 DT, 6 L, 7 box, 8 ring, 9 doubleL, 10 doubleC, 11 omega),
types (type as string),beamtypes (beamtype as string), Lx, Ly, b, h, t, etc.
Return Value
StringA string with the desired property
See Also