本文整理汇总了C#中ITextBuffer.GetText方法的典型用法代码示例。如果您正苦于以下问题:C# ITextBuffer.GetText方法的具体用法?C# ITextBuffer.GetText怎么用?C# ITextBuffer.GetText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ITextBuffer
的用法示例。
在下文中一共展示了ITextBuffer.GetText方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FindMimeType
public static string FindMimeType(ITextBuffer buffer)
{
if (buffer == null)
throw new ArgumentNullException("buffer");
// TODO USE PROPER ENCODING!
// Maybe use Encoding detection from AvalonEdit?
byte[] bytes = Encoding.Default.GetBytes(buffer.TextLength > BUFFER_SIZE ? buffer.GetText(0, BUFFER_SIZE) : buffer.Text);
return FindMimeType(bytes, 0, bytes.Length);
}
示例2: GetWhitespaceBefore
/// <summary>
/// Gets all indentation before the offset.
/// </summary>
/// <param name="document">The document.</param>
/// <param name="offset">The offset where the indentation ends.</param>
/// <returns>The indentation text.</returns>
public static string GetWhitespaceBefore(ITextBuffer textBuffer, int offset)
{
ISegment segment = TextUtilities.GetWhitespaceBefore(GetTextSource(textBuffer), offset);
return textBuffer.GetText(segment.Offset, segment.Length);
}
示例3: ElementStartsWith
bool ElementStartsWith(string text, int elementStartIndex, ITextBuffer document)
{
int textLength = Math.Min(text.Length, document.TextLength - elementStartIndex);
return document.GetText(elementStartIndex, textLength).Equals(text, StringComparison.OrdinalIgnoreCase);
}