Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
SegmentDetails.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3public class SegmentDetails {
4
8 public String strContent = "";
12 public boolean bBold = false;
16 public boolean bItalic = false;
20 public boolean bStrikethrough = false;
24 public boolean bBulletedList = false;
28 public boolean bNumberedList = false;
32 public boolean bUnderline = false;
36 public boolean bQuote = false;
40 public String insertLinkUrl = "";
44 public int indent = 0;
64 public static class FontSizeAttrs {
68 public static int FontSize_Small = 8;
69 public static int FontSize_Medium = 10;
70 public static int FontSize_Large = 12;
71 public int fontSize = 0;
72 }
76 public static class FontColorAttrs {
88 public int red = 0;
89 public int green = 0;
90 public int blue = 0;
91 }
95 public static class BackgroundColorAttrs {
108 public int red = 0;
109 public int green = 0;
110 public int blue = 0;
111 }
115 public static class ParagraphAttrs {
119 public static String RichTextStyle_Paragraph_H1 = "h1";
120 public static String RichTextStyle_Paragraph_H2 = "h2";
121 public static String RichTextStyle_Paragraph_H3 = "h3";
122 public String strParagraph = "";
123 }
124}
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 int FontSize_Small
Currently supported font size value.
static String RichTextStyle_Paragraph_H1
Currently supported paragraph.
boolean bNumberedList
true: text style is Numbered, otherwise not.
String strContent
Segment content value.
FontSizeAttrs fontSizeAttrs
Segment FontSizeAttrs value.
int indent
The number of times the indentation style is applied.
BackgroundColorAttrs backgroundColorAttrs
Segment BackgroundColorAttrs value.
boolean bBulletedList
true: text style is BulletedList, otherwise not.
boolean bItalic
true: text style is Italic, otherwise not.
boolean bStrikethrough
true: text style is Strikethrough, otherwise not.
boolean bBold
true: text style is Bold, otherwise not.
String insertLinkUrl
if insertLinkUrl not empty, text style has insert link url, otherwise not.
boolean bUnderline
true: text style is Underline, otherwise not.
ParagraphAttrs paragraphAttrs
Segment ParagraphAttrs value.
boolean bQuote
true: text style is Quote, otherwise not.
FontColorAttrs fontColorAttrs
Segment FontColorAttrs value.