Avatar of zachvaldez
zachvaldezFlag for United States of America

asked on 

font weights manipulation

This code toggles font inside a Richtextbox bold and normal. Assuming that the object is a picturebox..

'Bold
        If RichTextBox1.SelectionFont.Bold Then 'its already bold, so set it to regular
            RichTextBox1.SelectionFont = New Font(RichTextBox1.Font.FontFamily, RichTextBox1.Font.Size, FontStyle.Regular)
        Else 'make it bold
            RichTextBox1.SelectionFont = New Font(RichTextBox1.Font.FontFamily, RichTextBox1.Font.Size, FontStyle.Bold)
        End If

however; If Id like to add  an underline on it. How the code be adjusted
Visual Basic.NET

Avatar of undefined
Last Comment
Bob Learned
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Assuming this is a Windows Forms RichTextBox, that would be:

FontStyle.Bold Or FontStyle.Underline

The FontStyle enumeration has the Flags attribute, which means that you can combine any of the effects by "or-ing" them together.
Avatar of zachvaldez
zachvaldez
Flag of United States of America image

ASKER

Hi where will the code go thanks. or willit be another option line of code?
ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Visual Basic.NET
Visual Basic.NET

Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,

96K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo