libdom
Loading...
Searching...
No Matches
html_legend_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_legend_element_h_
9#define dom_html_legend_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
14
16
18
21
23 dom_html_legend_element *element, dom_string **access_key);
24
26 dom_html_legend_element *element, dom_string *access_key);
27
29 dom_html_legend_element *element, dom_string **align);
30
33
34#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_legend_element_set_align(dom_html_legend_element *ele, dom_string *align)
dom_exception dom_html_legend_element_get_form(dom_html_legend_element *ele, dom_html_form_element **form)
Definition html_legend_element.c:96
dom_exception dom_html_legend_element_set_access_key(dom_html_legend_element *element, dom_string *access_key)
dom_exception dom_html_legend_element_get_align(dom_html_legend_element *element, dom_string **align)
Definition html_legend_element.c:225
dom_exception dom_html_legend_element_get_access_key(dom_html_legend_element *element, dom_string **access_key)
Definition html_form_element.h:17
Definition html_legend_element.h:16
Definition string.h:19