| SystemFontsMenuBar Method  | 
 
            Gets the system menu bar font with optional specified size and decoration.
            
 
    Namespace: 
   Eto.Drawing
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic static Font MenuBar(
	Nullable<float> size = null,
	FontDecoration decoration = FontDecoration.None
)
Public Shared Function MenuBar ( 
	Optional size As Nullable(Of Single) = Nothing,
	Optional decoration As FontDecoration = FontDecoration.None
) As Font
static member MenuBar : 
        ?size : Nullable<float32> * 
        ?decoration : FontDecoration 
(* Defaults:
        let _size = defaultArg size null
        let _decoration = defaultArg decoration FontDecoration.None
*)
-> Font 
Parameters
- size (Optional)
- Type: SystemNullableSingle
 Size for the font, or null for the default system font size.
- decoration (Optional)
- Type: Eto.DrawingFontDecoration
 Decorations to add to the font.
Return Value
Type: 
Font[Missing <returns> documentation for "M:Eto.Drawing.SystemFonts.MenuBar(System.Nullable{System.Single},Eto.Drawing.FontDecoration)"]
 See Also
See Also