Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
SegmentDetails.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
6public class SegmentDetails {
7
9 public String strContent = "";
10
12 public boolean bBold = false;
13
15 public boolean bItalic = false;
16
18 public boolean bStrikethrough = false;
19
21 public boolean bBulletedList = false;
22
24 public boolean bNumberedList = false;
25
27 public boolean bUnderline = false;
29 public boolean bQuote = false;
30
32 public String insertLinkUrl = "";
33
35 public int indent = 0;
36
39
42
45
51 public static class FontSizeAttrs {
53 public static int FontSize_Small = 8;
55 public static int FontSize_Medium = 10;
57 public static int FontSize_Large = 12;
59 public int fontSize = 0;
60 }
61
64 public static class FontColorAttrs {
76 public int red = 0;
77 public int green = 0;
78 public int blue = 0;
79 }
80
83 public static class BackgroundColorAttrs {
96 public int red = 0;
97 public int green = 0;
98 public int blue = 0;
99 }
100
103 public static class ParagraphAttrs {
107 public static String RichTextStyle_Paragraph_H1 = "h1";
108 public static String RichTextStyle_Paragraph_H2 = "h2";
109 public static String RichTextStyle_Paragraph_H3 = "h3";
110 public String strParagraph = "";
111 }
112}
Segment BackgroundColorAttrs class.
int red
Currently supported background color combinations. BackgroundColor_Normal, 255,255,...
int red
Currently supported font color combinations. FontColor_Red, 235,24,7 FontColor_Orange,...
static String RichTextStyle_Paragraph_H1
Currently supported paragraph.
Details of a text segment with formatting information.
BackgroundColorAttrs backgroundColorAttrs