MonoDevelop.Ide.CodeFormatting.FormatBufferHandler.Update C# (CSharp) Method

Update() protected method

protected Update ( MonoDevelop.Components.Commands.CommandInfo info ) : void
info MonoDevelop.Components.Commands.CommandInfo
return void
		protected override void Update (CommandInfo info)
		{
			Document doc;
			var formatter = GetFormatter (out doc);
			info.Enabled = formatter != null;
		}
		
FormatBufferHandler