Dear Andreas,
can you provide further info on how to access the structural data stored in the Rhino objects?
My aim is to retrieve (and later modify) the SPT number stored in point objects.
I got as far as extracting the UserDataList from the Rhino objects. How do I proceed?
VB.Net script in Grasshopper:
Code:
Private Sub RunScript(ByVal points As Guid, ByRef A As Object)
Dim test As String
Dim obj As Object
Dim UD_liste As Rhino.DocObjects.Custom.UserDataList
obj = RhinoDocument.Objects.Find(points)
UD_liste = obj.Attributes.UserData
Print(UD_liste.Count.ToString)
End Sub
Kind regards,
Patrick