pub struct MetaHyperlinkBehaviour {
pub target_frame_name: Option<String>,
pub show: Option<XLinkShow>,
}Expand description
Specifies the default behavior for hyperlinks in a document.
Fields§
§target_frame_name: Option<String>The office:target-frame-name attribute specifies the name of a target frame. The defined values for the office:target-frame-name attribute are: • _blank: The referenced document is displayed in a new frame. • _parent: The referenced document is displayed in the parent frame of the current frame. • _self: The referenced document replaces the content of the current frame. • _top: The referenced document is displayed in the topmost frame, that is the frame that contains the current frame as a child or descendant but is not contained within another frame. • A frame name: The referenced document is displayed in the named frame. If the named frame does not exist, a new frame with that name is created. The office:target-frame-name attribute may be used together with an xlink:show 19.917 attribute. In that case, if the value of the attribute is _blank, the xlink:show attribute value should be new. If the value of the attribute is any of the other value options, the value of the xlink:show attribute should be replace.
show: Option<XLinkShow>See XLink
Implementations§
Trait Implementations§
Source§impl Clone for MetaHyperlinkBehaviour
impl Clone for MetaHyperlinkBehaviour
Source§fn clone(&self) -> MetaHyperlinkBehaviour
fn clone(&self) -> MetaHyperlinkBehaviour
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for MetaHyperlinkBehaviour
impl Debug for MetaHyperlinkBehaviour
Source§impl Default for MetaHyperlinkBehaviour
impl Default for MetaHyperlinkBehaviour
Source§fn default() -> MetaHyperlinkBehaviour
fn default() -> MetaHyperlinkBehaviour
Source§impl GetSize for MetaHyperlinkBehaviour
impl GetSize for MetaHyperlinkBehaviour
Source§fn get_heap_size(&self) -> usize
fn get_heap_size(&self) -> usize
Source§fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>(
&self,
tracker: TRACKER,
) -> (usize, TRACKER)
fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>( &self, tracker: TRACKER, ) -> (usize, TRACKER)
tracker. Read moreSource§fn get_stack_size() -> usize
fn get_stack_size() -> usize
Source§fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
tracker. Read more