PdfPage.GetSelection 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetSelection(CGRect) |
傳回指定矩形中的文字。 |
GetSelection(NSRange) |
傳回指定範圍的選取範圍。 |
GetSelection(CGPoint, CGPoint) |
傳回使用者座標空間開始和終點所指定之矩形中的文字。 |
GetSelection(CGRect)
傳回指定矩形中的文字。
[Foundation.Export("selectionForRect:")]
public virtual PdfKit.PdfSelection GetSelection (CoreGraphics.CGRect rect);
abstract member GetSelection : CoreGraphics.CGRect -> PdfKit.PdfSelection
override this.GetSelection : CoreGraphics.CGRect -> PdfKit.PdfSelection
參數
- rect
- CGRect
矩形,在使用者座標中,要取得選取範圍。
傳回
- 屬性
適用於
GetSelection(NSRange)
傳回指定範圍的選取範圍。
[Foundation.Export("selectionForRange:")]
public virtual PdfKit.PdfSelection GetSelection (Foundation.NSRange range);
abstract member GetSelection : Foundation.NSRange -> PdfKit.PdfSelection
override this.GetSelection : Foundation.NSRange -> PdfKit.PdfSelection
參數
- range
- NSRange
要選取的文字範圍。
傳回
- 屬性
適用於
GetSelection(CGPoint, CGPoint)
傳回使用者座標空間開始和終點所指定之矩形中的文字。
[Foundation.Export("selectionFromPoint:toPoint:")]
public virtual PdfKit.PdfSelection GetSelection (CoreGraphics.CGPoint startPoint, CoreGraphics.CGPoint endPoint);
abstract member GetSelection : CoreGraphics.CGPoint * CoreGraphics.CGPoint -> PdfKit.PdfSelection
override this.GetSelection : CoreGraphics.CGPoint * CoreGraphics.CGPoint -> PdfKit.PdfSelection
參數
- startPoint
- CGPoint
選取矩形的第一個點。
- endPoint
- CGPoint
選取矩形的最後一點。
傳回
- 屬性