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
Description

Excerpt

When data is imported from a two-dimensional or rectangular array, the first dimension of the array corresponds to row and the second to column.

Signature
C#
C#
 public boolean Transpose{ get; set; }
Signature
vb.net
vb.net
Public Property Transpose() As Boolean
Remarks
Code Block
csharp
csharp
{{"A","X"},{"B","Y"},{"C","Z"}}

Would be entered in the worksheet as:

A

X

B

Y

C

Z

If Transpose is set to true, the format will be [column][row] and

Code Block
csharp
csharp
{{"A","B","C"},{"X","Y","Z"}}

would be inserted as:

A

X

B

Y

C

Z

Transpose is a read/write property.

Example
Code Block
csharp
csharp
titleC#

          //--- Get Transpose
          boolean transpose = importProps.Transpose;

          //--- Set Transpose
          importProps.Transpose = true;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Get Transpose
          Dim transpose As Boolean = importProps.Transpose

          '--- Set Transpose
          importProps.Transpose = True