Is there a way to change the zoom web component view video size after init?

Description
Hi i would like to know if there are any methods available to use in the MedlyvesZoomClient after i initialise the zoom web component ?

Which Web Meeting SDK version?
2.9.7

Meeting SDK Code Snippets

this is what i use to initialise in the begining. but i want to change the video size as the session progress and as the user interacts with the page and its components the video position will change and i need it to resize based on the position of the video. i have it fixed, not allowing the user to drag it around

client.init({
          zoomAppRoot: meetingSDKElement,
          language: "en-US",
          customize: {
            video: {
              defaultViewType: "active",
              viewSizes: {
                default: {
                  width: calWidth,
                  height: height * 0.85,
                },
              },
              popper: {
                disableDraggable: true,
              },
            },
          },
        });

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.