Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Creates a [DataImportProperties|DataImportProperties] object that contains a set of properties that can be used when importing data to a [Worksheet|Worksheet] or [Area|Area].{excerpt}
{signature:C#}
 public DataImportProperties CreateDataImportProperties()
{signature}{signature:vb.net}
Public Function CreateDataImportProperties() As DataImportProperties
{signature}
{returns}A [DataImportProperties |DataImportProperties ] object.{returns}
{example}{code:csharp|title=C#}

          DataImportProperties importProps =
               wb.CreateDataImportProperties();
        {code}
{code:vb.net|title=vb.net}

          Dim importProps As DataImportProperties = _
               wb.CreateDataImportProperties()
        {code}

{example}