# MarkInfo

## Content

# Class: MarkInfo

Represents a mark information dictionary, providing additional information relevant to
specialized uses of structured PDF documents.

## Extends

- [`ObjectBase`](ObjectBase)

## Accessors

### id

#### Get Signature

```ts
get id(): number;
```

Gets the reference to the object.

##### Returns

`number`

#### Inherited from

[`ObjectBase`](ObjectBase).[`id`](ObjectBase#id)

***

### marked

#### Get Signature

```ts
get marked(): boolean;
```

Gets a flag indicating whether the document conforms to Tagged PDF conventions.

##### Returns

`boolean`

#### Set Signature

```ts
set marked(value): void;
```

Sets a flag indicating whether the document conforms to Tagged PDF conventions.

##### Parameters

###### value

`boolean`

##### Returns

`void`

***

### om

#### Get Signature

```ts
get om(): ObjectManager;
```

Gets the owner [ObjectManager](ObjectManager) instance.

##### Returns

[`ObjectManager`](ObjectManager)

#### Inherited from

[`ObjectBase`](ObjectBase).[`om`](ObjectBase#om)

***

### suspects

#### Get Signature

```ts
get suspects(): boolean;
```

Gets a flag indicating the presence of tag suspects.

##### Returns

`boolean`

#### Set Signature

```ts
set suspects(value): void;
```

Sets a flag indicating the presence of tag suspects.

##### Parameters

###### value

`boolean`

##### Returns

`void`

***

### userProperties

#### Get Signature

```ts
get userProperties(): boolean;
```

Gets a flag indicating the presence of structure elements that contain user properties attributes.

##### Returns

`boolean`

#### Set Signature

```ts
set userProperties(value): void;
```

Sets a flag indicating the presence of structure elements that contain user properties attributes.

##### Parameters

###### value

`boolean`

##### Returns

`void`

## Methods

### free()

```ts
free(): void;
```

Detaches the object from the [ObjectManager](ObjectManager) and deallocates its memory, if possible.

#### Returns

`void`

#### Inherited from

[`ObjectBase`](ObjectBase).[`free`](ObjectBase#free)

***

### rebind()

```ts
rebind(omTo): void;
```

Rebinds the object from the current [ObjectManager](ObjectManager) to the specified one.

#### Parameters

##### omTo

[`ObjectManager`](ObjectManager)

The new [ObjectManager](ObjectManager) for the object.

#### Returns

`void`

#### Inherited from

[`ObjectBase`](ObjectBase).[`rebind`](ObjectBase#rebind)
