Questions tagged [bold]

Bold for Delphi is an advanced Object Relational Mapper (ORM) and application framework. Do not use for the font style named "bold".

This tag is under discussion here: A [bold] initiative.

278 questions
4
votes
4 answers

What could cause a bold tag to be ignored?

I have an issue with some HTML displayed in Drupal, but I am not 100% sure this is a Drupal issue. I am using the bold tag to emphasize a word, but it is not displayed as bold. It thought it might be the Google font I used, so I disabled it, but I…
Jérôme Verstrynge
  • 57,710
  • 92
  • 283
  • 453
4
votes
3 answers

HTML : Text after empty bold tag also displayed in bold formatting

I am trying to understand why browser behaves like this. I have following text in html document. This is Sample Text. Text after empty bold tag. If I view this document in browser, it is displayed as shown…
Sambhaji
  • 990
  • 5
  • 19
  • 31
4
votes
0 answers

extracting text using flags to focus on bold / italic font using PyMUPDF

I am trying to extract bold text elements from PDFs using PyMUPDF 1.18.14. I was hoping that this would work as I understand from the docs that flags=4 targets bold font. page = doc[1] text = page.get_text(flags=4) print(text) But it prints out all…
Cam
  • 1,263
  • 13
  • 22
4
votes
3 answers

Make textview's content with both bold and regular text

I'm using a textview to hold a string coming from a web service. String comes with a format like this. "sample text {{b}}bold text{{/b}} and so on". I need to show the bold text bold in my textview. in a single operation I just can pass the string.…
ikbal
  • 1,844
  • 4
  • 26
  • 46
4
votes
2 answers

Apps Script - Send Email - Make content in email bold - Format result of Array.toString in bold

My code sends email notifications every time a Google Form is submitted. It works, but I want the collected form data as bold in the email. for(var i in headers) message += headers[i] + ': '+ e.namedValues[headers[i]].toString() + "\n\n"; …
4
votes
1 answer

Multiple menu items in bold face

I've been investigating the effort needed in getting menu items displayed in bold face - without having to draw the menu myself - and discovered MFS_DEFAULT menu item state after some googling. The MSDN documentation mentions MFS_DEFAULT Specifies…
jpoh
  • 4,536
  • 4
  • 35
  • 60
4
votes
1 answer

how to close a popup screen in blackberry bold

hey i have displayed a pop-up screen when i click on a menu item now i want to close that pop-up screen when user presses escape key.but it does not work and remain stuck,till i click on a button on the pop=up screen. how can i achieve…
Swati
  • 2,870
  • 7
  • 45
  • 87
4
votes
3 answers

TreeView text clipped if font changed from bold to regular

I have a WinForms TreeView. The TreeView represents a summary of more detailed views and one of the visual cues I am using is to make a node's text bold or regular. The trouble is, if you change a node's font from regular to bold it clips the text…
philsquared
  • 22,403
  • 12
  • 69
  • 98
4
votes
1 answer

Bold labels in MFC

I want to create labels in MFC (Static text) that have both bold and non-bold text. Something like this: "I would like my label to look like this, for example" Any thoughts of how to do this? I know that I can change the font of the entire label…
Dana
  • 2,619
  • 5
  • 31
  • 45
4
votes
1 answer

How do I bold portions of a bound TextBlock?

I have a TextBlock bound to a property. However, I'd like to bold certain words within the text. What is the easiest way to do this? FYI, I'm new to WPF.
bsh152s
  • 3,178
  • 6
  • 51
  • 77
4
votes
2 answers

Android last word of a line can cause incorrect textview dimension if using a right margin

I have a strange behaviour when using bold text in an textview. So the problem is as follows, I have created a custom item which holds text and is supposed to be used as an item later on in a list, so the item is contained several times in a…
DokutoMekki
  • 491
  • 4
  • 17
4
votes
1 answer

Cumulate RunProperties on Run with OpenXML SDK 2.0

I was wondering if I could cumulate RunProperties on Run Run run = new Run(new Text("test")); RunProperties runProperties = new RunProperties(); runProperties.AppendChild(new Bold()); runProperties.AppendChild(new…
Aelios
  • 11,849
  • 2
  • 36
  • 54
4
votes
2 answers

Make small font bolder

I'm wondering if anyone has a smart js or css trick to make a small font a little bolder. For a client, we're using the Courier font with font-size 12px/15px and text-transform uppercased. I added font-weight bolder to the text, but the text still…
c_m3
  • 63
  • 1
  • 5
4
votes
2 answers

Django Template tag to allow bold and italic elements

Django has a template tag that allows you to remove certain html tags from being displayed in stored data. The django documentation gives an example. Any b or span tags are removed.…
Joe J
  • 9,985
  • 16
  • 68
  • 100
3
votes
2 answers

Error to put in bold text - Objective-C

I'm trying to put "bold" on a part of a text, but I can't do it. I'm using this: NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:@"this is a part of the text"]; NSRange selectedRange = NSMakeRange(5, 10); …
JHispa
  • 323
  • 1
  • 4
  • 6
1 2
3
18 19