Mono.TextEditor.TextViewMargin.LineDescriptor.LineDescriptor C# (CSharp) Method

LineDescriptor() protected method

protected LineDescriptor ( Mono.TextEditor.DocumentLine line, int offset, int length ) : System
line Mono.TextEditor.DocumentLine
offset int
length int
return System
			protected LineDescriptor (DocumentLine line, int offset, int length)
			{
				this.Offset = offset;
				this.Length = length;
				this.MarkerLength = line.MarkerCount;
				this.Spans = line.StartSpan;
			}
TextViewMargin.LineDescriptor