# TipConfig

The `TipConfig` interface configures how the tip message box is displayed.

```ts
interface TipConfig {
  topLeftPoint: Point;
  width: number;
  duration: number;
  coordinateBase: "view" | "image";
}
```

## topLeftPoint

The top left point of the tip message box.

**See Also**

[Point](https://www.dynamsoft.com/capture-vision/docs/web/programming/javascript/api-reference/core/basic-structures/point.md)

## width

The width of the tip message box.

## duration

The display duration of the tip in milliseconds.

## coordinateBase

The base coordinate system used (e.g., "view" or "image").
