FontDialog.ShowColor : FontDialog « System.Windows.Forms « VB.Net by API






FontDialog.ShowColor

  
Imports System
Imports System.Data
Imports System.Windows.Forms
Imports System.Drawing

Public Class MainClass
    
    Shared Sub Main()
        Dim dlgFont As System.Windows.Forms.FontDialog
        dlgFont = New System.Windows.Forms.FontDialog
        
        dlgFont.ShowColor = True
        If dlgFont.ShowDialog() = DialogResult.OK Then
        End If

    End Sub
End Class

   
    
  








Related examples in the same category

1.FontDialog.AllowScriptChange
2.FontDialog.Color
3.FontDialog.Font
4.FontDialog.ShowApply
5.FontDialog.ShowEffects