Type Statement /text/sbasic/shared/03090413.xhp
Type statement Type Statement Define non-UNO data structures (structs).
A struct is an ordered collection of data fields, that can be manipulated as a single item. Type StructName DataField1 As TypeName1 DataField2 As TypeName2 (...) End Type REM ***** BASIC ***** Type customer Name1 As String City As String End Type Sub setCustomer Dim oCustomer as new customer oCustomer.Name1 = "The Document Foundation" oCustomer.City = "Berlin" End Sub
CreateObject function