PdfPageGotoLinkContent.Bounds Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the bounds of a PdfPageGotoLinkContent
represented as a list of RectF
.
public System.Collections.Generic.IList<Android.Graphics.RectF> Bounds { [Android.Runtime.Register("getBounds", "()Ljava/util/List;", "", ApiSince=35)] get; }
[<get: Android.Runtime.Register("getBounds", "()Ljava/util/List;", "", ApiSince=35)>]
member this.Bounds : System.Collections.Generic.IList<Android.Graphics.RectF>
Property Value
The bounds of the goto link.
- Attributes
Remarks
Gets the bounds of a PdfPageGotoLinkContent
represented as a list of RectF
. Links which are spread across multiple lines will be surrounded by multiple RectF
in order of viewing.
<strong>Note:</strong> Each RectF
represents a bound of the goto link in a single line and defines the coordinates of its 4 edges (left, top, right and bottom) in points (1/72"). The developer will need to render the highlighter as well as intercept the touch events for functionalities such as clicking the link.
Java documentation for android.graphics.pdf.content.PdfPageGotoLinkContent.getBounds()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.