IUITextViewDelegate Interface

Definition

Interface representing the required methods (if any) of the protocol UITextViewDelegate.

[Foundation.Protocol(Name="UITextViewDelegate", WrapperType=typeof(UIKit.UITextViewDelegateWrapper))]
public interface IUITextViewDelegate : IDisposable, UIKit.IUIScrollViewDelegate
type IUITextViewDelegate = interface
    interface INativeObject
    interface IDisposable
    interface IUIScrollViewDelegate
Derived
Attributes
Implements

Remarks

This interface contains the required methods (if any) from the protocol defined by UITextViewDelegate.

If developers create classes that implement this interface, the implementation methods will automatically be exported to Objective-C with the matching signature from the method defined in the UITextViewDelegate protocol.

Optional methods (if any) are provided by the UITextViewDelegate_Extensions class as extension methods to the interface, allowing developers to invoke any optional methods on the protocol.

Properties

Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Extension Methods

DecelerationEnded(IUIScrollViewDelegate, UIScrollView)

Indicates that deceleration relating to a scroll event has ended.

DecelerationStarted(IUIScrollViewDelegate, UIScrollView)

Indicates that deceleration of a scrolling event has begun.

DidChangeAdjustedContentInset(IUIScrollViewDelegate, UIScrollView)

Method that is called when the inset values change.

DidZoom(IUIScrollViewDelegate, UIScrollView)

Indicates that the specified scrollView has zoomed.

DraggingEnded(IUIScrollViewDelegate, UIScrollView, Boolean)

Indicates that dragging has completed.

DraggingStarted(IUIScrollViewDelegate, UIScrollView)

Indicates that dragging has begun.

ScrollAnimationEnded(IUIScrollViewDelegate, UIScrollView)

Indicates that all animations relating to scrolling have completed.

Scrolled(IUIScrollViewDelegate, UIScrollView)

Indicates that the specified scrollView has scrolled.

ScrolledToTop(IUIScrollViewDelegate, UIScrollView)

Indicates that the specified scrollView's scrolling has ended at the top.

ShouldScrollToTop(IUIScrollViewDelegate, UIScrollView)

Whether a scroll to the beginning of the scrollView should be permitted.

ViewForZoomingInScrollView(IUIScrollViewDelegate, UIScrollView)

The UIView to scale when zooming is requested.

WillEndDragging(IUIScrollViewDelegate, UIScrollView, CGPoint, CGPoint)

Indicates that dragging is about to end.

ZoomingEnded(IUIScrollViewDelegate, UIScrollView, UIView, nfloat)

Indicates that zooming has completed.

ZoomingStarted(IUIScrollViewDelegate, UIScrollView, UIView)

Indicates that zooming has begun.

Changed(IUITextViewDelegate, UITextView)

Indicates the text or text attributes in the specified UITextView were changed by the app user.

EditingEnded(IUITextViewDelegate, UITextView)

Indicates that editing has ended in the specified UITextView.

EditingStarted(IUITextViewDelegate, UITextView)

Indicates editing has begun in the specified UITextView.

SelectionChanged(IUITextViewDelegate, UITextView)

Indicates the text selection has changed in the specified UITextView.

ShouldBeginEditing(IUITextViewDelegate, UITextView)

Whether editing should begin in the specified UITextView.

ShouldChangeText(IUITextViewDelegate, UITextView, NSRange, String)

Whether the specified text should be replaced in the UITextView.

ShouldEndEditing(IUITextViewDelegate, UITextView)

Whether editing should end in the specified UITextView.

ShouldInteractWithTextAttachment(IUITextViewDelegate, UITextView, NSTextAttachment, NSRange)

Developers should not use this deprecated method. Developers should use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.

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

Whether the specified UITextView should allow user interaction with the specified URL in the given range of text.

ShouldInteractWithUrl(IUITextViewDelegate, UITextView, NSUrl, NSRange)

Whether the specified UITextView should allow user interaction with the specified URL in the given range of text.

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

Whether the specified UITextView should allow user interaction with the specified URL in the given range of text.

Applies to