ARCed.Scintilla.SnippetChooser.SetPosition C# (CSharp) Method

SetPosition() public method

public SetPosition ( ) : void
return void
		public void SetPosition()
		{
			if (!Visible)
				return;

			int pos = this.Scintilla.Caret.Position;
			int x = this.Scintilla.PointXFromPosition(pos);
			int y = this.Scintilla.PointYFromPosition(pos);

			Location = new Point(x, y);
		}