You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`displayName` : Name of the breakout room. This property is read-only.
204
+
> [Note:]
205
+
> The following sample code efficiently displays all breakout room properties. It is not intended to be reused as shown. In practice you only use the properties needed for your breakout room scenario.
-`threadId` : You can use chat thread ID to join chat of the breakout room. This property is read-only.
215
-
216
-
```js
217
210
const state :BreakoutRoomState=breakoutRoom.state;
218
-
```
219
-
220
-
-`state` : State of the breakout room. It can be either `open` or `closed`. Users would be able to join the breakout room only when the state is `open`. This property is read-only.
-`autoMoveParticipantToBreakoutRoom` : Boolean value, which indicates whether the users are moved to breakout rooms automatically when the `state` of `assignedBreakoutRoom` is set to `open`. This property is read-only. In the Teams UI settings for breakout rooms, the organizer, co-organizer, or breakout room manager can adjust this specific setting. By setting this option to `true`, participants are automatically transferred to their designated breakout room. Conversely, if you set this property to `false`, then you must manually call the `join` method to move participants into the breakout room.
-`call` : Breakout room call object. This object is returned when the user joins the breakout room call automatically or by calling `join` method on `assignedBreakoutRoom` object. This property is read-only.
233
-
234
-
```js
235
213
const invitees :Invitee[] =breakoutRoom.invitees;
236
214
```
237
215
238
-
-`invitees` : The list of invitees who are assigned to the breakout room. This property is read-only.
216
+
| Breakout room properties | Description|
217
+
| --- | --- |
218
+
|`displayName`| Name of the breakout room. This property is read-only. |
219
+
|`threadId`| Use the chat thread ID to join chat of the breakout room. This property is read-only. |
220
+
|`state`| State of the breakout room. It can be either `open` or `closed`. Users would be able to join the breakout room only when the state is `open`. This property is read-only. |
221
+
|`autoMoveParticipantToBreakoutRoom`| Boolean value indicating whether the users are moved to breakout rooms automatically when the `state` of `assignedBreakoutRoom` is set to `open`. This property is read-only. In the Teams UI settings for breakout rooms, the organizer, co-organizer, or breakout room manager can adjust this specific setting. By setting this option to `true`, participants are automatically transferred to their designated breakout room. Conversely, if you set this property to `false`, then you must manually call the `join` method to move participants into the breakout room. |
222
+
|`call`| Breakout room call object. This object is returned when the user joins the breakout room call automatically or by calling the `join` method on `assignedBreakoutRoom` object. This property is read-only. |
223
+
|`invitees`| The list of invitees who are assigned to the breakout room. This property is read-only. |
239
224
240
-
### Breakout room settings
225
+
### Breakout room settings
241
226
242
227
Breakout rooms share setting that has the following properties:
-`disableReturnToMainMeeting` : Disable participants to return to the main meeting from the breakout room call. This property is read-only. In the Teams UI settings for breakout rooms, the organizer, co-organizer, or breakout room manager can adjust this specific setting to control when the participant of breakout rooms can return to the main meeting.
-`roomEndTime`: Breakout room end time set by the Microsoft 365 user with role organizer, co-organizer, or breakout room manager of the main meeting. This property is read-only.
234
+
| Breakout room properties | Description|
235
+
| --- | --- |
236
+
|`disableReturnToMainMeeting`| Disable participants to return to the main meeting from the breakout room call. This property is read-only. In the Teams UI settings for breakout rooms, the organizer, co-organizer, or breakout room manager can adjust this specific setting to control when the participant of breakout rooms can return to the main meeting. |
237
+
|`roomEndTime`| Breakout room end time set by the Microsoft 365 user with role organizer, co-organizer, or breakout room manager of the main meeting. This property is read-only. |
0 commit comments