ICSharpCode.TextEditor.TextEditorControl.Advance C# (CSharp) Метод

Advance() защищенный Метод

protected Advance ( float &x, float &y, float maxWidth, float size, float fontHeight ) : void
x float
y float
maxWidth float
size float
fontHeight float
Результат void
		void Advance(ref float x, ref float y, float maxWidth, float size, float fontHeight)
		{
			if (x + size < maxWidth) {
				x += size;
			} else {
				x  = curTabIndent;
				y += fontHeight;
			}
		}