visible$

View as MarkdownOpen in Claude
1get visible$(): Observable<boolean | undefined>

Observable indicating whether the participant is visible in the layout.

Inherited from

Participant.visible$

visible

1get visible(): boolean

Whether the participant is visible in the layout.

Inherited from

Participant.visible

Examples

1selfParticipant.visible$.subscribe((visible) => {
2 console.log('visible:', visible);
3});