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

...

Description

Excerpt

Returns the HeaderFooterPicture that has been embedded in this section of the spreadsheet's header or footer, or null if there is no picture.

Signature
C#
C#
public HeaderFooterPicture GetPicture()
{signature}
{signature:
}
Signature
vb.net
vb.net
Public Function GetPicture() As HeaderFooterPicture
{signature}
{returns}
The picture that has been embedded in the footer or header as a [HeaderFooterPicture] object
{returns}
{example}
{code:csharp|title=C#}
Returns

The picture that has been embedded in the footer or header as a HeaderFooterPicture object

Example
Code Block
csharp
csharp
titleC#

HeaderFooterPicture pic = header.GetPicture();
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim pic As HeaderFooterPicture = header.GetPicture()
{code} {example}