本文整理汇总了C#中ISelection.ContainsPosition方法的典型用法代码示例。如果您正苦于以下问题:C# ISelection.ContainsPosition方法的具体用法?C# ISelection.ContainsPosition怎么用?C# ISelection.ContainsPosition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ISelection
的用法示例。
在下文中一共展示了ISelection.ContainsPosition方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}
示例2: IsInSel
protected static bool IsInSel(Location location, ISelection sel)
{
bool result = (sel.ContainsPosition(new ICSharpCode.TextEditor.TextLocation(location.Column - 1, location.Line - 1)));
return result;
}
示例3: IsInSel
protected static bool IsInSel(Location location, ISelection sel)
{
// See ExtractMethodTests.WhiteSpaceMatters for why these are commented out.
// Why were they in #D source in the first place?
bool result = (sel.ContainsPosition(location.Column/* - 1*/, location.Line /*- 1*/));
return result;
}