New to Telerik UI for WPFStart a free 30-day trial

Header

Class

Represents a document header.

Definition

Constructors

Initializes a new instance of the Header class.

C#
public Header()

Initializes a new instance of the Header class.

C#
public Header(Header header)
Parameters:headerHeader

The header to clone.

Properties

Gets a value indicating whether header/footer is empty.

C#
public override bool IsEmpty { get; }
Property Value:

true if header/footer is empty; otherwise, false.

Overrides: HeaderFooterBase.IsEmpty

Gets or sets the watermark settings.

C#
[XamlCompositePropertySerializable]
public DocumentWatermarkSettings WatermarkSettings { get; set; }
Property Value:

The watermark settings.

Methods

Copies the properties from another instance to the current one.

C#
protected override void CopyPropertiesFromOverride(HeaderFooterBase fromHeaderFooter)
Parameters:fromHeaderFooterHeaderFooterBase

The HeaderFooterBase to copy the properties from.

Overrides: HeaderFooterBase.CopyPropertiesFromOverride(HeaderFooterBase)

Creates a new instance.

C#
public override HeaderFooterBase CreateInstance()
Returns:

HeaderFooterBase

The new instance.

Overrides: HeaderFooterBase.CreateInstance()

Called after changing the watermark settings.

C#
protected virtual void OnWatermarkSettingsChanged()

Events

Occurs after changing the watermark settings.

C#
public event EventHandler WatermarkSettingsChanged