# PdfFontDescriptorFlags

## Content

# Enumeration: PdfFontDescriptorFlags

Specifies various characteristics of the font.

## Enumeration Members

### AllCap

```ts
AllCap: 65536;
```

Font contains no lowercase letters; typically used for display purposes, such as for titles or headlines.

***

### FixedPitch

```ts
FixedPitch: 1;
```

All glyphs have the same width (as opposed to proportional or variable-pitch fonts,
which have different widths).

***

### ForceBold

```ts
ForceBold: 262144;
```

See PDF1.7 specification, page 459.

***

### Italic

```ts
Italic: 64;
```

Glyphs have dominant vertical strokes that are slanted.

***

### None

```ts
None: 0;
```

No flags.

***

### Nonsymbolic

```ts
Nonsymbolic: 32;
```

Font uses the Adobe standard Latin character set or a subset of it.
This flag and the [Symbolic](#symbolic) flag cannot both be set or both be clear.

***

### Script

```ts
Script: 8;
```

Glyphs resemble cursive handwriting.

***

### Serif

```ts
Serif: 2;
```

Glyphs have serifs, which are short strokes drawn at an angle on the top and bottom
of glyph stems. (Sans serif fonts do not have serifs.)

***

### SmallCap

```ts
SmallCap: 131072;
```

Font contains both uppercase and lowercase letters.

***

### Symbolic

```ts
Symbolic: 4;
```

Font contains glyphs outside the Adobe standard Latin character set.
This flag and the [Nonsymbolic](#nonsymbolic) flag cannot both be set or both be clear.
