pub trait DOMHTMLTableElementExt: 'static {
Show 45 methods
fn create_caption(&self) -> Option<DOMHTMLElement>;
fn create_t_foot(&self) -> Option<DOMHTMLElement>;
fn create_t_head(&self) -> Option<DOMHTMLElement>;
fn delete_caption(&self);
fn delete_row(&self, index: c_long) -> Result<(), Error>;
fn delete_t_foot(&self);
fn delete_t_head(&self);
fn align(&self) -> Option<GString>;
fn bg_color(&self) -> Option<GString>;
fn border(&self) -> Option<GString>;
fn caption(&self) -> Option<DOMHTMLTableCaptionElement>;
fn cell_padding(&self) -> Option<GString>;
fn cell_spacing(&self) -> Option<GString>;
fn rows(&self) -> Option<DOMHTMLCollection>;
fn rules(&self) -> Option<GString>;
fn summary(&self) -> Option<GString>;
fn t_bodies(&self) -> Option<DOMHTMLCollection>;
fn t_foot(&self) -> Option<DOMHTMLTableSectionElement>;
fn t_head(&self) -> Option<DOMHTMLTableSectionElement>;
fn width(&self) -> Option<GString>;
fn insert_row(&self, index: c_long) -> Result<DOMHTMLElement, Error>;
fn set_align(&self, value: &str);
fn set_bg_color(&self, value: &str);
fn set_border(&self, value: &str);
fn set_caption(
&self,
value: &impl IsA<DOMHTMLTableCaptionElement>
) -> Result<(), Error>;
fn set_cell_padding(&self, value: &str);
fn set_cell_spacing(&self, value: &str);
fn set_rules(&self, value: &str);
fn set_summary(&self, value: &str);
fn set_t_foot(
&self,
value: &impl IsA<DOMHTMLTableSectionElement>
) -> Result<(), Error>;
fn set_t_head(
&self,
value: &impl IsA<DOMHTMLTableSectionElement>
) -> Result<(), Error>;
fn set_width(&self, value: &str);
fn connect_align_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_bg_color_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_border_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_caption_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_cell_padding_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_cell_spacing_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_rows_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_rules_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_summary_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_t_bodies_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_t_foot_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_t_head_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_width_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Expand description
Required Methods
sourcefn create_caption(&self) -> Option<DOMHTMLElement>
fn create_caption(&self) -> Option<DOMHTMLElement>
sourcefn create_t_foot(&self) -> Option<DOMHTMLElement>
fn create_t_foot(&self) -> Option<DOMHTMLElement>
sourcefn create_t_head(&self) -> Option<DOMHTMLElement>
fn create_t_head(&self) -> Option<DOMHTMLElement>
sourcefn delete_caption(&self)
fn delete_caption(&self)
Deprecated since 2.22
Use JavaScriptCore API instead
sourcefn delete_row(&self, index: c_long) -> Result<(), Error>
fn delete_row(&self, index: c_long) -> Result<(), Error>
sourcefn delete_t_foot(&self)
fn delete_t_foot(&self)
Deprecated since 2.22
Use JavaScriptCore API instead
sourcefn delete_t_head(&self)
fn delete_t_head(&self)
Deprecated since 2.22
Use JavaScriptCore API instead