Is there any way to assign the contents of an array in a single line to a structure type variable?
B4X:
Sub Process_Globals
Type RowType(data1 As Int, data2 As String, data3 As Objet) '<---data... N
Public Col As RowType
End Sub
'Then in a Sub ...
Sub PrintPDF
Col.Initialize
Col = Array As Objet(1, "dato x", "dato y") '<--- Error
End Sub