> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# visible$

> Observable indicating whether the participant is visible in the layout.

```ts
get visible$(): Observable<boolean | undefined>
```

Observable indicating whether the participant is visible in the layout.

## visible

```ts
get visible(): boolean
```

Whether the participant is visible in the layout.

## **Examples**

```ts
participant.visible$.subscribe((visible) => {
  console.log('visible:', visible);
});
```