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

Represents the event arguments for the HeaderFooterUpdateNeeded event in the Telerik UI framework.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Type Parameters:

T

The type of the header or footer content being updated.

Syntax:

C#
public abstract class HeaderFooterUpdateNeededEventArgs<T> : EventArgs where T : HeaderFooterBase

Inheritance: objectEventArgsHeaderFooterUpdateNeededEventArgs<T>

Derived Classes: FooterUpdateNeededEventArgsHeaderUpdateNeededEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
protected HeaderFooterUpdateNeededEventArgs(Section section, HeaderFooterType headerType, T headerFooter)
Parameters:sectionSectionheaderTypeHeaderFooterTypeheaderFooterT

Properties

Represents the event arguments for the HeaderFooterUpdateNeeded event, providing access to the updated header or footer content.

C#
public T HeaderFooter { get; }

Represents the type of header or footer that has been updated.

C#
public HeaderFooterType HeaderFooterType { get; }

Represents the event arguments for the HeaderFooterUpdateNeeded event, specifically containing the Section information related to the update.

C#
public Section Section { get; }