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

Sets or returns the dimensions of the area in the format "A1:B7".

...

Signature
C#
C#
 public System.String Dimensions{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property Dimensions() As String
{signature}
{example}{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#


//--- Get Dimensions
string areaDimensions = a.Dimensions;

//--- Set Dimensions
a.Dimensions = "A1:B7";
{code} {code:vbnet|title=
Code Block
vbnet
vbnet
titlevb.net
}


'--- Get Dimensions
Dim areaDimensions As String = a.Dimensions

'--- Set Dimensions
a.Dimensions = "A1:B7"
{code} {example} {scrollbar}
Scrollbar