visible$

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

Observable indicating whether the participant is visible in the layout.

visible

get visible(): boolean

Whether the participant is visible in the layout.

Examples

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