cPropMaterial GetNameList Method CSi API ETABS 2015
Retrieves the names of all defined material properties of the specified type.

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

int GetNameList(
	ref int NumberNames,
	ref string[] MyName,
	eMatType MatType = 
)

Parameters

NumberNames
Type: OnlineSystem Int32 
The number of material property names retrieved by the program.
MyName
Type:  OnlineSystem String  
One-dimensional array of material property names. The MyName array is created as a dynamic, zero-based, array by the API user:

Dim MyName() as String

The array is dimensioned to (NumberNames - 1) inside the program, filled with the names, and returned to the API user.
MatType (Optional)
Type: ETABS2015 eMatType
This optional value is one of the items in the eMatType enumeration.

If no value is input for MatType, names are returned for all material properties in the model regardless of type.

Return Value

Returns zero if the names are successfully retrieved; otherwise it returns nonzero.
Remarks

Examples

See Also