Class Location
Represents a destination that specifies an explicit location on a page with optional zoom level.
Inheritance
System.Object
Location
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class Location : Destination, IFixedDocumentElement, IContextClonable<Destination>
Constructors
Properties
Gets or sets the horizontal coordinate (x-axis) position on the page for this location.
If null, the current horizontal position is preserved when navigating to this destination.
Declaration
public double? Left { get; set; }
Property Value
System.Nullable<System.Double>
The left coordinate in points, or null to preserve the current horizontal position.
|
Gets or sets the vertical coordinate (y-axis) position on the page for this location.
If null, the current vertical position is preserved when navigating to this destination.
Declaration
public double? Top { get; set; }
Property Value
System.Nullable<System.Double>
The top coordinate in points, or null to preserve the current vertical position.
|
Gets or sets the zoom factor for displaying the page at this location.
If null, the current zoom level is preserved when navigating to this destination.
Declaration
public double? Zoom { get; set; }
Property Value
System.Nullable<System.Double>
The zoom factor as a decimal value (e.g., 1.0 for 100%, 2.0 for 200%), or null to preserve the current zoom level.
|
Extension Methods