Struct spreadsheet_ods::metadata::MetaHyperlinkBehaviour
source · 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 more