Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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#
Wiki Markup
{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.
{excerpt}
{signature:C#}
public HeaderFooterPicture GetPicture()
Signature
{signature}
{signature:vb.net
vb.net
}
Public Function GetPicture() As HeaderFooterPicture
Returns

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

{signature}
{returns}
The picture that has been embedded in the footer or header as a [HeaderFooterPicture] object
{returns}
{example}
{code:csharp|title=C#}
HeaderFooterPicture pic = header.GetPicture();
{code}
{code:vb.net
|title=vb.net
}
Dim pic As HeaderFooterPicture = header.GetPicture()
{code}
{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle