Package im.zego.zegoexpress.entity
Class ZegoMixerWhiteboard
- java.lang.Object
-
- im.zego.zegoexpress.entity.ZegoMixerWhiteboard
-
public class ZegoMixerWhiteboard extends java.lang.Object
Mixer whiteboard object. Configure the mix whiteboard ID, aspect ratio and the layout.
-
-
Field Summary
Fields Modifier and Type Field Description int
backgroundColor
Whiteboard background color.int
horizontalRatio
Whiteboard aspect ratio(width), the default aspect ratio is 16:9.boolean
isPPTAnimation
Whether the whiteboard will load dynamic PPT files or not, default value is false.android.graphics.Rect
layout
Whiteboard layout.int
verticalRatio
Whiteboard aspect ratio(height), the default aspect ratio is 16:9.long
whiteboardID
Whiteboard ID.int
zOrder
Whiteboard z-order.
-
Constructor Summary
Constructors Constructor Description ZegoMixerWhiteboard()
-
-
-
Field Detail
-
whiteboardID
public long whiteboardID
Whiteboard ID.
-
horizontalRatio
public int horizontalRatio
Whiteboard aspect ratio(width), the default aspect ratio is 16:9.
-
verticalRatio
public int verticalRatio
Whiteboard aspect ratio(height), the default aspect ratio is 16:9.
-
isPPTAnimation
public boolean isPPTAnimation
Whether the whiteboard will load dynamic PPT files or not, default value is false.
-
layout
public android.graphics.Rect layout
Whiteboard layout.
-
zOrder
public int zOrder
Whiteboard z-order.
-
backgroundColor
public int backgroundColor
Whiteboard background color. Defaule is 0xF1F3F400 (gray). The color value corresponding to RGBA is 0xRRGGBBAA, and setting the transparency of the background color is currently not supported. The AA in 0xRRGGBBAA is 00. For example, select RGB as \#87CEFA as the background color, this parameter passes 0x87CEFA00.F
-
-