/// <summary>Checks whether the current selection can be loaded with content in a specified data format.</summary>
 /// <param name="dataFormat">A data format to check for load-compatibility into the current selection.  See <see cref="T:System.Windows.DataFormats" /> for a list of predefined data formats.</param>
 /// <returns>
 ///     <see langword="true" /> if the current selection can be loaded with content in the specified data format; otherwise, <see langword="false" />.</returns>
 // Token: 0x06003ADC RID: 15068 RVA: 0x0010A34E File Offset: 0x0010854E
 public bool CanLoad(string dataFormat)
 {
     return(TextRangeBase.CanLoad(this, dataFormat));
 }