Message-ID: <2041998947.8413.1711645006818.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8412_2090107218.1711645006818" ------=_Part_8412_2090107218.1711645006818 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Worksheet.StandardHeight

Worksheet.StandardHeight

Description

Sets or returns the default row height in points (1/72 of an inch). = This must be between 0 and 409.=20
C#
=20
public double StandardHeight{ get; set; }
= =20
=20
vb.net
=20
Public Property StandardHeight() As Double
= =20
=20

Examples

=20
C#
=20
          //--- Get StandardHeight
          ws.StandardHeight =3D 35;

          //--- Set StandardHeight
          double rowHeight =3D ws.StandardHeight;
        
=20
vb.net
=20
          '--- Get StandardHeight
          ws.StandardHeight =3D 35

          '--- Set StandardHeight
          Dim rowHeight As Double =3D ws.StandardHeight
        
=20
=20

Remarks

=20

The default value of this property in Excel 2003 and earlier is 12.75. I= n Excel 2007 and later, it is 15.

In general, the default StandardHeight depends on the workb= ook's normal font. If your workbook has a non-default font, the default StandardHeight will be slightly larger than the size of that font= . The default font in Excel 2003 and earlier is 10pt Arial; in Excel 2007 a= nd later it is 11pt Calibri.

------=_Part_8412_2090107218.1711645006818--