Mono.TextEditor.TextEditorOptions.DisposeFont C# (CSharp) Method

DisposeFont() protected method

protected DisposeFont ( ) : void
return void
		protected void DisposeFont ()
		{
			if (font != null) {
				font.Dispose ();
				font = null;
			}

			if (gutterFont != null) {
				gutterFont.Dispose ();
				gutterFont = null;
			}
		}