Definition
Namespace:Telerik.WinForms.Documents.Model
Assembly:Telerik.WinControls.RichTextEditor.dll
Type Parameters:
T
Syntax:
C#
public abstract class HeadersFootersBase<T> where T : HeaderFooterBase, new()
Inheritance: objectHeadersFootersBase<T>
Derived Classes:
Constructors
Initializes a new instance of the HeadersFootersBase<T> class.
C#
protected HeadersFootersBase()
Properties
Gets or sets the default (odd) page header/footer.
C#
[XamlCompositePropertySerializable]
public T Default { get; set; }
The default (odd) page header/footer.
Even
T
Gets or sets the even page header/footer.
C#
[XamlCompositePropertySerializable]
public T Even { get; set; }
The even page header/footer.
Gets or sets the first page header/footer.
C#
[XamlCompositePropertySerializable]
public T First { get; set; }
The first page header/footer.
Methods
Copies the properties from another instance to the current one.
C#
public void CopyPropertiesFrom(HeadersFootersBase<T> fromHeadersFootersBase)
The object to copy the properties from.
Creates a deep copy of the current instance.
Creates a new instance.
C#
public abstract HeadersFootersBase<T> CreateInstance()
The new instance.
Events
Occurs when header/footer is changed.
C#
public event EventHandler Changed