Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Ensuring that a style is supported by a font family

Total Hit ( 2602)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Click here to copy the following block
' Not all fonts support the same styles. This function takes in
' input a font family and a font style, and returns a font style
' which is safe for that particular font family, by removing
' the styles that are not supported
'
' Example:
'  GetSafeStyleForFontFamily(richTextBox1.SelectionFont.FontFamily,
' '   richTextBox1.SelectionFont.Style)

Public Function GetSafeStyleForFontFamily(ByVal fontFam As FontFamily, _
  ByVal style As FontStyle) As FontStyle
  ' remove the styles not supported
  If (style And FontStyle.Regular) = FontStyle.Regular Then
    ' if the regular style is currently present, but not supported
    ' by the new font family, remove it
    If Not fontFam.IsStyleAvailable(FontStyle.Regular) Then
      style = style And Not FontStyle.Regular
    End If
  End If
  ' do the same for bold, italic and underline
  If (style And FontStyle.Bold) = FontStyle.Bold Then
    If Not fontFam.IsStyleAvailable(FontStyle.Bold) Then
      style = style And Not FontStyle.Bold
    End If
  End If
  If (style And FontStyle.Italic) = FontStyle.Italic Then
    If Not fontFam.IsStyleAvailable(FontStyle.Italic) Then
      style = style And Not FontStyle.Italic
    End If
  End If
  If (style And FontStyle.Underline) = FontStyle.Underline Then
    If Not fontFam.IsStyleAvailable(FontStyle.Underline) Then
      style = style And Not FontStyle.Underline
    End If
  End If
  If (style And FontStyle.Strikeout) = FontStyle.Strikeout Then
    If Not fontFam.IsStyleAvailable(FontStyle.Strikeout) Then
      style = style And Not FontStyle.Strikeout
    End If
  End If
  Return style
End Function


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.