Class Location
Destination that scrolls to an explicit point on a page with optional zoom factor.
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
Initialize a location destination with no fixed offsets or zoom; unless Left, Top, or Zoom are set later, navigation preserves the viewer's current position and scale.
Declaration
Properties
Gets or sets the X coordinate to align in the viewport; null preserves current horizontal scroll.
Coordinates are in document space with origin at the top-left. X increases to the right and Y increases downward.
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 Y coordinate to align in the viewport; null preserves current vertical scroll.
Coordinates are in document space with origin at the top-left. X increases to the right and Y increases downward.
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 applied on navigation; null keeps the viewer's existing zoom.
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.
|