Mono.TextEditor.TextViewMargin.LayoutDescriptor.LayoutDescriptor C# (CSharp) Метод

LayoutDescriptor() публичный Метод

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
Результат 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;
				}
			}