FontInfo Class
Encapsulates the font properties of text. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | Bold | Gets or sets a value that indicates whether the font is bold. |
![]() | Italic | Gets or sets a value that indicates whether the font is italic. |
![]() | Name | Gets or sets the primary font name. |
![]() | Names | Gets or sets an ordered array of font names. |
![]() | Overline | Gets or sets a value that indicates whether the font is overlined. |
![]() | Size | Gets or sets the font size. |
![]() | Strikeout | Gets or sets a value that indicates whether the font is strikethrough. |
![]() | Underline | Gets or sets a value that indicates whether the font is underlined. |
| Name | Description | |
|---|---|---|
![]() | ClearDefaults() | Resets all FontInfo properties to the unset state and clears the view state. |
![]() | CopyFrom(FontInfo^) | Duplicates the font properties of the specified FontInfo into the instance of the FontInfo class that this method is called from. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MergeWith(FontInfo^) | Combines the font properties of the specified FontInfo with the instance of the FontInfo class that this method is called from. |
![]() | ShouldSerializeNames() | This API supports the product infrastructure and is not intended to be used directly from your code. Determines whether the Names property should be persisted. |
![]() | ToString() | Returns a string that contains the font name and size for an instance of the FontInfo class.(Overrides Object::ToString().) |
Use the FontInfo class to encapsulate the font properties of text. You can specify the font name and font size. You can also specify whether the style of the font is bold, italic, overlined, strikethrough, or underlined.
This class is commonly used in a property for a class that requires font information, such as the Font property of the WebControl class.
Note |
|---|
This class does not have a public constructor. A new instance of the class cannot be created directly. |
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


