| 87 UIEXPORT void ui_textstyle_set_underline(UiTextStyle *style, UiBool set); |
87 UIEXPORT void ui_textstyle_set_underline(UiTextStyle *style, UiBool set); |
| 88 UIEXPORT void ui_textstyle_set_italic(UiTextStyle *style, UiBool set); |
88 UIEXPORT void ui_textstyle_set_italic(UiTextStyle *style, UiBool set); |
| 89 UIEXPORT void ui_textstyle_set_color(UiTextStyle *style, int r, int g, int b); |
89 UIEXPORT void ui_textstyle_set_color(UiTextStyle *style, int r, int g, int b); |
| 90 UIEXPORT void ui_textstyle_enable_color(UiTextStyle *style, UiBool enable); |
90 UIEXPORT void ui_textstyle_enable_color(UiTextStyle *style, UiBool enable); |
| 91 |
91 |
| |
92 UIEXPORT UiBool ui_cell_value_is_string(UiCellValue *value); |
| |
93 UIEXPORT UiBool ui_cell_value_is_int(UiCellValue *value); |
| |
94 UIEXPORT const char* ui_cell_value_get_string(UiCellValue *value); |
| |
95 UIEXPORT int64_t ui_cell_value_get_int(UiCellValue *value); |
| |
96 |
| 92 |
97 |
| 93 #ifdef __cplusplus |
98 #ifdef __cplusplus |
| 94 } |
99 } |
| 95 #endif |
100 #endif |
| 96 |
101 |