Esempio n. 1
0
 TextRange IContentLinkChangedEventArgsResolver.TextRange(ContentLinkChangedEventArgs e) => e.TextRange;
Esempio n. 2
0
 ContentLinkInfo IContentLinkChangedEventArgsResolver.ContentLinkInfo(ContentLinkChangedEventArgs e) => e.ContentLinkInfo;
Esempio n. 3
0
 ContentLinkChangeKind IContentLinkChangedEventArgsResolver.ChangeKind(ContentLinkChangedEventArgs e) => e.ChangeKind;
Esempio n. 4
0
 /// <summary>
 /// Gets the text range that contains the content link.
 /// </summary>
 /// <param name="e">The requested <see cref="ContentLinkChangedEventArgs"/>.</param>
 /// <returns>The text range that contains the content link.</returns>
 public static TextRange TextRange(this ContentLinkChangedEventArgs e) => Resolver.TextRange(e);
Esempio n. 5
0
 /// <summary>
 /// Gets an object that contains information about the content link.
 /// </summary>
 /// <param name="e">The requested <see cref="ContentLinkChangedEventArgs"/>.</param>
 /// <returns>An object that contains information about the content link.</returns>
 public static ContentLinkInfo ContentLinkInfo(this ContentLinkChangedEventArgs e) => Resolver.ContentLinkInfo(e);
Esempio n. 6
0
 /// <summary>
 /// Gets a value that indicates how the content link is changed.
 /// </summary>
 /// <param name="e">The requested <see cref="ContentLinkChangedEventArgs"/>.</param>
 /// <returns>An enumeration value that indicates how the content link is changed.</returns>
 public static ContentLinkChangeKind ChangeKind(this ContentLinkChangedEventArgs e) => Resolver.ChangeKind(e);