pub trait DOMHTMLBaseFontElementExt: 'static {
fn color(&self) -> Option<GString>;
fn face(&self) -> Option<GString>;
fn size(&self) -> c_long;
fn set_color(&self, value: &str);
fn set_face(&self, value: &str);
fn set_size(&self, value: c_long);
}
Expand description
Required Methods
sourcefn color(&self) -> Option<GString>
fn color(&self) -> Option<GString>
This function has been removed from the DOM spec and it just returns None
.
Deprecated since 2.12
Returns
A gchar
sourcefn face(&self) -> Option<GString>
fn face(&self) -> Option<GString>
This function has been removed from the DOM spec and it just returns None
.
Deprecated since 2.12
Returns
A gchar
sourcefn size(&self) -> c_long
fn size(&self) -> c_long
This function has been removed from the DOM spec and it just returns 0.
Deprecated since 2.12
Returns
A glong
sourcefn set_color(&self, value: &str)
fn set_color(&self, value: &str)
This function has been removed from the DOM spec and it does nothing.
Deprecated since 2.12
value
A gchar
sourcefn set_face(&self, value: &str)
fn set_face(&self, value: &str)
This function has been removed from the DOM spec and it does nothing.
Deprecated since 2.12
value
A gchar
sourcefn set_size(&self, value: c_long)
fn set_size(&self, value: c_long)
This function has been removed from the DOM spec and it does nothing.
Deprecated since 2.12
value
A glong