本文整理汇总了C#中ISelection.ContainsOffset方法的典型用法代码示例。如果您正苦于以下问题:C# ISelection.ContainsOffset方法的具体用法?C# ISelection.ContainsOffset怎么用?C# ISelection.ContainsOffset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ISelection
的用法示例。
在下文中一共展示了ISelection.ContainsOffset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CallAllProperties
internal static void CallAllProperties(ISelection selection)
{
selection.ContainsOffset(0);
selection.ContainsPosition(TextLocation.Empty);
int offset = selection.EndOffset;
TextLocation position = selection.EndPosition;
bool empty = selection.IsEmpty;
bool rectangularSelection = selection.IsRectangularSelection;
int length = selection.Length;
int offset2 = selection.Offset;
string text = selection.SelectedText;
TextLocation startPosition = selection.StartPosition;
}