Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Description

Excerpt

Gets or sets the height in pixels of a picture embedded within a header or footer

Signature
C#
C#
public int Height { get; set; }
{signature}
{signature:
}
Signature
vb.net
vb.net
Public Function Height() As Integer
{signature}
{example}
{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#
HeaderFooterPicture hfp = header.GetPicture();

//--- Set height of picture to 20 pixels
hfp.Height = 20;
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}
Dim hfp As HeaderFooterPicture = header.GetPicture()

'--- Set height of picture to 20 pixels
hfp.Height = 20
{code} {example}