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

LayoutDescriptor() public method

public LayoutDescriptor ( Mono.TextEditor.DocumentLine line, int offset, int length, LayoutWrapper layout, int selectionStart, int selectionEnd ) : System
line Mono.TextEditor.DocumentLine
offset int
length int
layout LayoutWrapper
selectionStart int
selectionEnd int
return System
			public LayoutDescriptor (DocumentLine line, int offset, int length, LayoutWrapper layout, int selectionStart, int selectionEnd) : base(line, offset, length)
			{
				this.Layout = layout;
				if (selectionEnd >= 0) {
					this.SelectionStart = selectionStart;
					this.SelectionEnd = selectionEnd;
				}
			}