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

public int Height { get; set; }
Public Function Height() As Integer
HeaderFooterPicture hfp = header.GetPicture();

//--- Set height of picture to 20 pixels
hfp.Height = 20;
Dim hfp As HeaderFooterPicture = header.GetPicture()

'--- Set height of picture to 20 pixels
hfp.Height = 20