{description}
{excerpt}
Gets or sets the height in pixels of a picture embedded within a header or footer
{excerpt}
{signature:C#}
public int Height { get; set; }
{signature}
{signature:vb.net}
Public Function Height() As Integer
{signature}
{example}
{code:csharp|title=C#}
HeaderFooterPicture hfp = header.GetPicture();

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

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