libdom
Loading...
Searching...
No Matches
html_tablerow_element.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
6 * Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
7 */
8#ifndef dom_html_table_row_element_h_
9#define dom_html_table_row_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
14
17
19
22
25
27 dom_html_table_row_element *table, dom_string **bg_color);
28
30 dom_html_table_row_element *table, dom_string *bg_color);
31
34
37
39 dom_html_table_row_element *table, dom_string **ch_off);
40
43
45 dom_html_table_row_element *table, dom_string **v_align);
46
48 dom_html_table_row_element *table, dom_string *v_align);
49
51 dom_html_table_row_element *table, int32_t *index);
52
54 dom_html_table_row_element *table_row, int32_t *section_row_index);
55
58 dom_html_collection **cells);
59
62 int32_t index);
63
66 int32_t index, dom_html_element **cell);
67
68#endif
69
dom_exception
Definition exceptions.h:24
dom_exception dom_html_table_row_element_set_ch_off(dom_html_table_row_element *table, dom_string *ch_off)
dom_exception dom_html_table_row_element_insert_cell(dom_html_table_row_element *element, int32_t index, dom_html_element **cell)
Definition html_tablerow_element.c:353
dom_exception dom_html_table_row_element_get_ch_off(dom_html_table_row_element *table, dom_string **ch_off)
dom_exception dom_html_table_row_element_get_section_row_index(dom_html_table_row_element *table_row, int32_t *section_row_index)
Definition html_tablerow_element.c:294
dom_exception dom_html_table_row_element_delete_cell(dom_html_table_row_element *element, int32_t index)
Definition html_tablerow_element.c:420
dom_exception dom_html_table_row_element_set_v_align(dom_html_table_row_element *table, dom_string *v_align)
dom_exception dom_html_table_row_element_get_bg_color(dom_html_table_row_element *table, dom_string **bg_color)
dom_exception dom_html_table_row_element_get_cells(dom_html_table_row_element *element, dom_html_collection **cells)
Definition html_tablerow_element.c:337
dom_exception dom_html_table_row_element_set_ch(dom_html_table_row_element *table, dom_string *ch)
dom_exception dom_html_table_row_element_set_align(dom_html_table_row_element *table, dom_string *align)
dom_exception dom_html_table_row_element_get_align(dom_html_table_row_element *table, dom_string **align)
dom_exception dom_html_table_row_element_set_bg_color(dom_html_table_row_element *table, dom_string *bg_color)
dom_exception dom_html_table_row_element_get_v_align(dom_html_table_row_element *table, dom_string **v_align)
dom_exception dom_html_table_row_element_get_ch(dom_html_table_row_element *table, dom_string **ch)
dom_exception dom_html_table_row_element_get_row_index(dom_html_table_row_element *table, int32_t *index)
Definition html_tablerow_element.c:203
Definition html_collection.h:21
Definition html_element.h:22
Definition html_tablerow_element.h:15
Definition string.h:19