Unable to nest tables #725
-
Describe the bug To Reproduce Table Table2 = new Table() Table1.AddRow("test", table2); This gives me a compile time error : |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@kollerp That method overload expects a params array of Try the following: Table1.AddRow(new Text("test"), table2); |
Beta Was this translation helpful? Give feedback.
@kollerp That method overload expects a params array of
string
; the one you're looking for takes a params array ofIRenderable
.Try the following: