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

YToLine() public method

public YToLine ( double yPos ) : int
yPos double
return int
		public int YToLine (double yPos)
		{			
			var result = textEditor.GetTextEditorData ().HeightTree.YToLineNumber (yPos);
			return result;
		}