You are here: GdPicture.NET > Documentation > Structs, Records, Enums > Enumerations > FontStyle Enumeration
logo.gif
ContentsIndexHome
PreviousUpNext
FontStyle Enumeration
C#
public enum FontStyle {
  FontStyleRegular = 0,
  FontStyleBold = 1,
  FontStyleItalic = 2,
  FontStyleBoldItalic = 3,
  FontStyleUnderline = 4,
  FontStyleBoldUnderline = 5,
  FontStyleItalicUnderline = 6,
  FontStyleBoldItalicUnderline = 7,
  FontStyleStrikeout = 8,
  FontStyleBoldStrikeout = 9,
  FontStyleItalicStrikeout = 10,
  FontStyleBoldItalicStrikeout = 11,
  FontStyleUnderlineStrikeout = 12,
  FontStyleBoldUnderlineStrikeout = 13,
  FontStyleItalicUnderlineStrikeout = 14,
  FontStyleBoldItalicUnderlineStrikeout = 15
}
Visual Basic
Public Enum FontStyle
  FontStyleRegular = 0
  FontStyleBold = 1
  FontStyleItalic = 2
  FontStyleBoldItalic = 3
  FontStyleUnderline = 4
  FontStyleBoldUnderline = 5
  FontStyleItalicUnderline = 6
  FontStyleBoldItalicUnderline = 7
  FontStyleStrikeout = 8
  FontStyleBoldStrikeout = 9
  FontStyleItalicStrikeout = 10
  FontStyleBoldItalicStrikeout = 11
  FontStyleUnderlineStrikeout = 12
  FontStyleBoldUnderlineStrikeout = 13
  FontStyleItalicUnderlineStrikeout = 14
  FontStyleBoldItalicUnderlineStrikeout = 15
End Enum

This is record FontStyle.

What do you think about this topic? Send feedback!
Copyright (c) 2009-2011 www.gdpicture.com. All rights reserved.