blob: 31bd18c35af04f13f780190ff6dcdf7bccfb1923 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 06 90 00 00 04 1a 08 06 00 00 00 44 97 3b | .PNG........IHDR.............D.; |
| 0020 | 56 00 00 00 06 62 4b 47 44 00 ff 00 ff 00 ff a0 bd a7 93 00 00 00 09 70 48 59 73 00 00 0b 13 00 | V....bKGD..............pHYs..... |
| 0040 | 00 0b 13 01 00 9a 9c 18 00 00 00 07 74 49 4d 45 07 d7 06 0d 0f 1a 38 2d b6 ae 32 00 00 20 00 49 | ............tIME......8-..2....I |
| 0060 | 44 41 54 78 da ec bd db 6e 1d c9 0e 25 48 11 6a b7 fb 0c e6 61 30 98 a7 f9 ff 3f 6c 1c 14 84 0d | DATx....n...%H.j....a0....?l.... |
| 0080 | ba 1f ac 5d ce ca 0a 92 8b 97 88 cc 2d 05 01 c3 b2 2c ed 8c 8c 20 19 bc 2e be 11 d1 ff 24 22 a1 | ...]........-....,...........$". |
00a0// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using ICSharpCode.AvalonEdit.Document;
namespace ICSharpCode.AvalonEdit.Highlighting
{
/// <summary>
/// A text section with syntax highlighting information.
/// </summary>
public class HighlightedSection : ISegment
{
/// <summary>
/// Gets/sets the document offset of the section.
/// </summary>
public int Offset { get; set; }
/// <summary>
/// Gets/sets the length of the section.
/// </summary>
public int Length { get; set; }
int ISegment.EndOffset {
get { return this.Offset + this.Length; }
}
/// <summary>
/// Gets the highlighting color associated with the highlighted section.
/// </summary>
public HighlightingColor Color { get; set; }
}
}
|