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

public int Width { get; set; }
Public Function Width() As Integer
HeaderFooterPicture hfp = header.GetPicture();
 
//--- Set width of picture to 20 pixels
hfp.Width = 20;
Dim hfp As HeaderFooterPicture = header.GetPicture()
 
'--- Set width of picture to 20 pixels
hfp.Width = 20