| | |
Reset Font in RTB
![]() |
I have a Rich Text Box in which the user can open a Font Dialog Box and change the FontStyle of the RTB. This feature works fine, however
after a user makes the text bold or italic they cannot reset it back to regular. How do you do this??
This is the code I have so far:
If the user selects Regular in the DialogBox how do I make a FontStyle that is just regular??
Thanks in Advance.
after a user makes the text bold or italic they cannot reset it back to regular. How do you do this??
This is the code I have so far:
PMFontDialog.ShowDialog(); if (PMFontDialog.Font.Bold && PMFontDialog.Font.Italic) { FontStyle PMFontStyle = FontStyle.Bold | FontStyle.Italic; txtPMOutgoing.Font = new Font(txtPMOutgoing.Font, PMFontStyle); } else if (PMFontDialog.Font.Italic) { FontStyle PMFontStyle = FontStyle.Italic; txtPMOutgoing.Font = new Font(txtPMOutgoing.Font, PMFontStyle); } else if (PMFontDialog.Font.Bold) { FontStyle PMFontStyle = FontStyle.Bold; txtPMOutgoing.Font = new Font(txtPMOutgoing.Font, PMFontStyle); } else { // Make text regular text }
If the user selects Regular in the DialogBox how do I make a FontStyle that is just regular??
Thanks in Advance.
![]() |
Similar Threads
- Create a Password Reset Disk (Windows tips 'n' tweaks)
- Mozilla and Font Sizes (*nix Software)
- Mandrake 9.2 No Sound (*nix Hardware Configuration)
- I can’t get into windows 98!!!!!! Can anyone HELP (Windows 95 / 98 / Me)
- ie font problems (Web Browsers)
- reset xp (Web Browsers)
Other Threads in the C# Forum
- Previous Thread: InvalidOperationException was unhandled by user code.
- Next Thread: help needed
Views: 1584 | Replies: 1
| Thread Tools | Search this Thread |
Tag cloud for C#
.net 2d access algorithm application array asp.net audio automation barchart bitmap box button c# calendar chat check checkbox class code color combo control conversion csharp custom data database datagrid datagridview dataset datatable degrees display dll drawing event excel file files form format forms function game gcd gdi+ graphics image index input internet label list listbox login mandelbrot math monodevelop multithreading mysql office operator pda picturebox pixel print programming property query remote remoting resource richtextbox round saving search server socket sql statistics stream string text textbox thread threading time timer update validation vc++ visual visualstudio webbrowser windows winforms wpf write xml





