WatermarkCollection
Class
Manages the collection of watermarks in a document, supporting registration, removal, and enumeration.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model.Watermarks
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
C#
public class WatermarkCollection : IEnumerable<Watermark>, IEnumerable
Inheritance: objectWatermarkCollection
Implements:
Constructors
Creates a new watermark collection for the specified document.
C#
public WatermarkCollection(RadFlowDocument document)
The document.
Methods
Registers the specified watermark in the collection and associates it with this document.
Removes all watermarks from the collection.
C#
public void Clear()
Returns an enumerator for iterating through all watermarks in the collection.
C#
public IEnumerator GetEnumerator()
An IEnumerator object that can be used to iterate through the collection.
Implements: