Search
FontPickerForm Class
Remarks See Also
 






Represents a dialog which can be used to specify font styles within a worksheet.

Namespace: MindFusion.Spreadsheet.WinForms
Assembly: MindFusion.Spreadsheet.WinForms.StandardForms

 Syntax

C#  Copy Code

public class FontPickerForm : Form

Visual Basic  Copy Code

Public Class FontPickerForm
    Inherits Form

 Remarks

This form can be used to select fonts within a worksheet. To use the form, create an instance of the FontPickerForm class, by optionally providing the IStyle that should be used to initialize the form, and call the ShowDialog method. To get the user's choice, use the FontName, FontSize, Bold, Italic, Underline, Strikeout and TextColor properties. The following image shows the form:

 Inheritance Hierarchy

System.Object
    System.MarshalByRefObject
        System.ComponentModel.Component
            System.Windows.Forms.Control
                System.Windows.Forms.ScrollableControl
                    System.Windows.Forms.ContainerControl
                        System.Windows.Forms.Form
                            MindFusion.Spreadsheet.WinForms.FontPickerForm

 See Also