Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{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}