Contains settings for image watermark.
Definition
Namespace:Telerik.WinForms.Documents.Model
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
public class WatermarkImageSettings : INotifyPropertyChanged
Inheritance: objectWatermarkImageSettings
Implements:
Constructors
Initializes a new instance of the WatermarkImageSettings class.
public WatermarkImageSettings()
Initializes a new instance of the WatermarkImageSettings class.
Initializes a new instance of the WatermarkImageSettings class.
public WatermarkImageSettings(Stream inputStream)
The stream from which to obtain the image source.
Initializes a new instance of the WatermarkImageSettings class.
public WatermarkImageSettings(WriteableBitmap writableBitmap)
The writable bitmap which will be used to create the image.
Fields
public static readonly double NormalWatermarkOpacity
Properties
Gets or sets the file extension.
[XamlSerializable]
public string Extension { get; set; }
The extension.
Gets or sets the height.
[XamlSerializable]
public double Height { get; set; }
The height.
Gets or sets the image bytes in Base64 format. This property is used for serialization.
[XamlSerializable]
public string RawData { get; set; }
The raw data.
Gets or sets the angle at which the image should be rotated.
[XamlSerializable(0)]
public double RotateAngle { get; set; }
The rotate angle.
Gets or sets the URI which is used to obtain the image source.
public Uri UriSource { get; set; }
The URI source.
Methods
Creates a deep copy of this object.
Gets the byte array used to create the image.
Gets the RadDocument instance associated to this object.
public RadDocument GetRootDocument()
The RadDocument instance associated to this object.
Events
Occurs after a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: