Message-ID: <1931551100.7601.1711614912854.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_7600_1486244651.1711614912854" ------=_Part_7600_1486244651.1711614912854 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Worksheet.CreateAreaOfColumns(Int32, Int32)

Worksheet.CreateAreaOfColumns(Int32, Int32)

=20

Obsolete

=20 Icon=20
This method has been deprecated, as it is not the most efficient way to ed= it Column properties. Instead, use the=20 Worksh= eet.GetColumnProperties(Int32) method to return the=20 ColumnProperties= object of the desired column.=20
=20
=20

Descripti= on

=20

Returns an Area object representing al= l the cells in a specified group of columns. An area is a rectangular colle= ction of cells.

=20
C#
=20
 public Area CreateAreaOfColumns(int firstCol, int numCols)
=20
=20
vb.net
=20
Public Function CreateAreaOfColumns(ByVal firstCol As Integer, ByVal numCol=
s As Integer) As Area
=20
=20

Parameters=

=20
firstCol The 0-based index of the first column.=20
numCols
= The number of columns to include.=20

Returns

= An=20 Area object representing the set of cells in the specified col= umns.=20

Examples=20
C#
=20
Area a =3D ws.CreateAreaOfColumns(0, 25);
=20
=20
vb.net
=20
Dim a As Area =3D ws.CreateAreaOfColumns(0, 25)
=20

------=_Part_7600_1486244651.1711614912854--