visible$

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

Observable indicating whether the participant is visible in the layout.

Inherited from

Participant.visible$

visible

get visible(): boolean

Whether the participant is visible in the layout.

Inherited from

Participant.visible

Examples

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