UITextViewDelegate.ShouldInteractWithTextAttachment Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ShouldInteractWithTextAttachment(UITextView, NSTextAttachment, NSRange) |
Les développeurs ne doivent pas utiliser cette méthode déconseillée. Les développeurs doivent utiliser la surcharge « ShouldInteractWithTextAttachment » qui prend « UITextItemInteraction » à la place. |
ShouldInteractWithTextAttachment(UITextView, NSTextAttachment, NSRange, UITextItemInteraction) |
Indique si l’UITextView spécifié doit autoriser l’interaction de l’utilisateur avec la pièce jointe de texte spécifiée dans une plage de texte donnée. |
ShouldInteractWithTextAttachment(UITextView, NSTextAttachment, NSRange)
Les développeurs ne doivent pas utiliser cette méthode déconseillée. Les développeurs doivent utiliser la surcharge « ShouldInteractWithTextAttachment » qui prend « UITextItemInteraction » à la place.
[Foundation.Export("textView:shouldInteractWithTextAttachment:inRange:")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.None, "Use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool ShouldInteractWithTextAttachment (UIKit.UITextView textView, UIKit.NSTextAttachment textAttachment, Foundation.NSRange characterRange);
abstract member ShouldInteractWithTextAttachment : UIKit.UITextView * UIKit.NSTextAttachment * Foundation.NSRange -> bool
override this.ShouldInteractWithTextAttachment : UIKit.UITextView * UIKit.NSTextAttachment * Foundation.NSRange -> bool
Paramètres
- textView
- UITextView
- textAttachment
- NSTextAttachment
- characterRange
- NSRange
Retours
- Attributs
S’applique à
ShouldInteractWithTextAttachment(UITextView, NSTextAttachment, NSRange, UITextItemInteraction)
Indique si l’UITextView spécifié doit autoriser l’interaction de l’utilisateur avec la pièce jointe de texte spécifiée dans une plage de texte donnée.
[Foundation.Export("textView:shouldInteractWithTextAttachment:inRange:interaction:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool ShouldInteractWithTextAttachment (UIKit.UITextView textView, UIKit.NSTextAttachment textAttachment, Foundation.NSRange characterRange, UIKit.UITextItemInteraction interaction);
abstract member ShouldInteractWithTextAttachment : UIKit.UITextView * UIKit.NSTextAttachment * Foundation.NSRange * UIKit.UITextItemInteraction -> bool
override this.ShouldInteractWithTextAttachment : UIKit.UITextView * UIKit.NSTextAttachment * Foundation.NSRange * UIKit.UITextItemInteraction -> bool
Paramètres
- textView
- UITextView
Affichage de texte contenant la pièce jointe.
- textAttachment
- NSTextAttachment
Pièce jointe.
- characterRange
- NSRange
Plage de caractères dans laquelle la pièce jointe est attachée.
- interaction
- UITextItemInteraction
Type d’interaction à vérifier.
Retours
- Attributs