first commit
This commit is contained in:
32
ICSharpCode.TextEditor/Project/Src/Document/ISegment.cs
Normal file
32
ICSharpCode.TextEditor/Project/Src/Document/ISegment.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
namespace ICSharpCode.TextEditor.Document
|
||||
{
|
||||
/// <summary>
|
||||
/// This interface is used to describe a span inside a text sequence
|
||||
/// </summary>
|
||||
public interface ISegment
|
||||
{
|
||||
/// <value>
|
||||
/// The offset where the span begins
|
||||
/// </value>
|
||||
int Offset {
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <value>
|
||||
/// The length of the span
|
||||
/// </value>
|
||||
int Length {
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user