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}{signature:
}
Signature
vb.net
vb.net
Public Property Transpose() As Boolean
{signature}
{remarks}
{code:csharp}
Remarks
Code Block
csharp
csharp

{{"A","X"},{"B","Y"},{"C","Z"}}
{code}

Would

be

entered

in

the

worksheet

as:

|

A

|

X

| |

B

|

Y

| |

C

|

Z

|

If

[

Transpose

|DataImportProperties.Transpose]

is

set

to

{{

true

}}

,

the

format

will

be

\

[column

\

]

\

[row

\

]

and

{code:csharp}

Code Block
csharp
csharp

{{"A","B","C"},{"X","Y","Z"}}
{code}

would

be

inserted

as:

|

A

|

X

| |

B

|

Y

| |

C

|

Z

|

Transpose

is

a

read/write

property.

{remarks} {example}{code:csharp|title=C#}

Example
Code Block
csharp
csharp
titleC#


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

          //--- Set Transpose
          importProps.Transpose = true;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set Transpose
          importProps.Transpose = True
        
{code} {example}