IUITextViewDelegate インターフェイス

定義

プロトコル UITextViewDelegateの必要なメソッド (存在する場合) を表すインターフェイス。

[Foundation.Protocol(Name="UITextViewDelegate", WrapperType=typeof(UIKit.UITextViewDelegateWrapper))]
public interface IUITextViewDelegate : IDisposable, UIKit.IUIScrollViewDelegate
type IUITextViewDelegate = interface
    interface INativeObject
    interface IDisposable
    interface IUIScrollViewDelegate
派生
属性
実装

注釈

このインターフェイスには、 で UITextViewDelegate定義されているプロトコルから必要なメソッド (存在する場合) が含まれています。

開発者がこのインターフェイスを実装するクラスを作成する場合、実装メソッドは、プロトコルで定義されているメソッドの一致するシグネチャを使用して Objective-C に自動的に UITextViewDelegate エクスポートされます。

省略可能なメソッド (ある場合) は、 インターフェイスの拡張メソッドとして クラスによって UITextViewDelegate_Extensions 提供され、開発者はプロトコルで任意のメソッドを呼び出すことができます。

プロパティ

Handle

アンマネージ オブジェクト表現へのハンドル (ポインター)。

(継承元 INativeObject)

拡張メソッド

DecelerationEnded(IUIScrollViewDelegate, UIScrollView)

スクロール イベントに関連する減速が終了したことを示します。

DecelerationStarted(IUIScrollViewDelegate, UIScrollView)

スクロール イベントの減速が開始されたことを示します。

DidChangeAdjustedContentInset(IUIScrollViewDelegate, UIScrollView)

inset 値が変更されたときに呼び出されるメソッド。

DidZoom(IUIScrollViewDelegate, UIScrollView)

指定した scrollView がズームされたことを示します。

DraggingEnded(IUIScrollViewDelegate, UIScrollView, Boolean)

ドラッグが完了したことを示します。

DraggingStarted(IUIScrollViewDelegate, UIScrollView)

ドラッグが開始されたことを示します。

ScrollAnimationEnded(IUIScrollViewDelegate, UIScrollView)

スクロールに関連するすべてのアニメーションが完了したことを示します。

Scrolled(IUIScrollViewDelegate, UIScrollView)

指定した scrollView がスクロールされたことを示します。

ScrolledToTop(IUIScrollViewDelegate, UIScrollView)

指定した scrollView のスクロールが一番上で終了したことを示します。

ShouldScrollToTop(IUIScrollViewDelegate, UIScrollView)

scrollView の先頭までのスクロールを許可するかどうか。

ViewForZoomingInScrollView(IUIScrollViewDelegate, UIScrollView)

ズームが要求されたときにスケーリングする UIView。

WillEndDragging(IUIScrollViewDelegate, UIScrollView, CGPoint, CGPoint)

ドラッグが終了しようとしていることを示します。

ZoomingEnded(IUIScrollViewDelegate, UIScrollView, UIView, nfloat)

ズームが完了したことを示します。

ZoomingStarted(IUIScrollViewDelegate, UIScrollView, UIView)

ズームが開始されたことを示します。

Changed(IUITextViewDelegate, UITextView)

指定した UITextView のテキスト属性またはテキスト属性がアプリ ユーザーによって変更されたことを示します。

EditingEnded(IUITextViewDelegate, UITextView)

指定した UITextView で編集が終了したことを示します。

EditingStarted(IUITextViewDelegate, UITextView)

指定した UITextView で編集が開始されたことを示します。

SelectionChanged(IUITextViewDelegate, UITextView)

指定した UITextView でテキストの選択が変更されたことを示します。

ShouldBeginEditing(IUITextViewDelegate, UITextView)

指定した UITextView で編集を開始するかどうかを指定します。

ShouldChangeText(IUITextViewDelegate, UITextView, NSRange, String)

指定したテキストを UITextView で置き換える必要があるかどうか。

ShouldEndEditing(IUITextViewDelegate, UITextView)

指定した UITextView で編集を終了するかどうかを指定します。

ShouldInteractWithTextAttachment(IUITextViewDelegate, UITextView, NSTextAttachment, NSRange)

開発者は、この非推奨のメソッドを使用しないでください。 開発者は、代わりに 'UITextItemInteraction' を受け取る 'ShouldInteractWithTextAttachment' オーバーロードを使用する必要があります。

ShouldInteractWithTextAttachment(IUITextViewDelegate, UITextView, NSTextAttachment, NSRange, UITextItemInteraction)

指定した UITextView で、指定したテキスト範囲の指定された URL とのユーザー操作を許可するかどうか。

ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange)

指定した UITextView で、指定したテキスト範囲の指定された URL とのユーザー操作を許可するかどうか。

ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange, UITextItemInteraction)

指定した UITextView で、指定したテキスト範囲の指定された URL とのユーザー操作を許可するかどうか。

適用対象