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

OnCaretBlink() private method

private OnCaretBlink ( EventArgs e ) : void
e System.EventArgs
return void
		void OnCaretBlink (EventArgs e)
		{
			var handler = CaretBlink;
			if (handler != null)
				handler (this, e);
		}
		#endregion