{description}
{excerpt}Imports the data from a rectangular array into a [Table|Table] at the point of the current element in the document.{excerpt}
{signature:C#}
 public Table ImportData(System.Object[,] data)
{signature}{signature:vb.net}
Public Function ImportData(ByVal data As Object(,)) As Table
{signature}
{parameters}
{param:data}The rectangular array to import the data from.{param}
{returns}The {{Table}} that the data was imported into.{returns}
{example}{code:csharp|title=C#}
Table tbl = e.ImportData(rectArray);{code}
{code:vb.net|title=vb.net}
Dim tbl As Table = e.ImportData(rectArray){code}

{example}