bold

Purpose

Finds documents containing arguments in bold.

Syntax

bold()

Arguments

The function has no required arguments.

The function accepts the following optional named parameters:

Parameter

Comments

Supported values

size

Specifies text’s size.

size:=18

name

Specifies font’s name.

name:="Times New Roman"

scope

text — maximum text fragment that matches the query conditions (default value)

token — a token matching the query

sentence — a sentence or its part matching the query

paragraph — a paragraph or its part matching the query

The scope parameter is only applicable if function arguments are not specified.

For example, in the query bold(noun()) query, the scope parameter is unnecessary because the function will find the text fragment corresponding to a noun.

The function works in docx format documents.

Returned Value

Documents matching the query.

Examples

bold(size:=14, name:="Times New Roman") finds texts written in Times New Roman font and 14 size.

bold(size:=14, name:="Times New Roman", noun()) finds nouns written in Times New Roman font and 14 size.

bold(italic()) finds bold text in italics.

bold(italic(noun(), size:=12)) finds nouns written both in bold and italics in size 12.