visible$

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

Observable indicating whether the participant is visible in the layout.

visible

1get visible(): boolean

Whether the participant is visible in the layout.

Examples

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