I have written the following code to get the reference no. of the plate elements used in the model, but I could not get the desired results.
I am able to get the thickness of the plate, but I need to get the Plate Reference Number also.
Dim mySTAAD as Object
Dim PlateRefNumber as Integer, Thickness as Double, PlateNumber as Long, plateThkArray(3) as double
.=========
With .Property
.GetPlateThickness PlateNumber, plateThkArray
Thickness = plateThkArray(0) * 1000 '[Working correctly]
PlateRefNumber = mySTAAD.Property.GetPlateThicknessPropertyRefNo(PlateNumber) [Not working] Error: Object does not support this property or method.
End With