[]
Override bidirectional behavior of children text.
public class BidirectionalOverride : FormattedContentObject, IBrowsable<BidirectionalOverride>
Initialiazes a new instance of the BidirectionalOverride class.
public BidirectionalOverride(Body parentBody)
parentBody
BodyA parent body for the content.
Gets the next BidirectionalOverride content.
public BidirectionalOverride Next { get; }
Gets the previous BidirectionalOverride content.
public BidirectionalOverride Previous { get; }
Left-to-right or Right-to-left text mode
public BiDirection Value { get; set; }
Adds a BidirectionalOverride to the end of the bidirectional override.
public BidirectionalOverride AddBidirectionalOverride()
The added BidirectionalOverride.
Adds a BidirectionalOverride to the end of the bidirectional override.
public BidirectionalOverride AddBidirectionalOverride(BiDirection direction)
direction
BiDirectionBidirectionalOverride direction value.
The added BidirectionalOverride.
Adds a ComplexField to the end of the bidirectional override.
public ComplexField AddComplexField(string code, string result)
code
stringThe complex field code.
result
stringThe result text of the inserted field.
The added ComplexField.
Adds a ComplexField to the end of the bidirectional override.
public ComplexField AddComplexField(string code)
code
stringThe complex field code.
The added ComplexField.
Adds a ContentControl to the end of the bidirectional override.
public ContentControl AddContentControl(ContentControlType type, bool fillContent = true)
type
ContentControlTypeThe new content control type.
fillContent
boolWhether to fill the new control content with default data.
The added ContentControl.
Adds an Endnote to the end of the bidirectional override.
public Endnote AddEndnote(string text, char referenceCharacter, string referenceFontName)
text
stringThe endnote text.
referenceCharacter
charThe endnote reference symbol.
referenceFontName
stringThe endnote reference symbol font.
Adds an Endnote to the end of the bidirectional override.
public Endnote AddEndnote(string text, string reference)
text
stringThe endnote text.
reference
stringThe endnote reference text.
Adds an Endnote to the end of the bidirectional override.
public Endnote AddEndnote(string text = null)
text
stringThe endnote text.
Adds a Footnote to the end of the bidirectional override.
public Footnote AddFootnote(string text, char referenceCharacter, string referenceFontName)
text
stringThe footnote text.
referenceCharacter
charThe footnote reference symbol.
referenceFontName
stringThe footnote reference symbol font.
Adds a Footnote to the end of the bidirectional override.
public Footnote AddFootnote(string text, string reference)
text
stringThe footnote text.
reference
stringThe footnote reference text.
Adds a Footnote to the end of the bidirectional override.
public Footnote AddFootnote(string text = null)
text
stringThe footnote text.
Adds a Hyperlink to the end of the bidirectional override.
public Hyperlink AddHyperlink()
Adds a Hyperlink to the end of the bidirectional override.
public Hyperlink AddHyperlink(string anchor, string text, string screenTip = null, string target = null)
anchor
stringThe name of a bookmark in the current document which shall be the target of this hyperlink.
text
stringThe display text of the specified hyperlink.
screenTip
stringThe text that appears as a ScreenTip when the mouse pointer is positioned over the specified hyperlink.
target
stringThe name of the frame or window in which you want to load the specified hyperlink.
Adds a Hyperlink to the end of the bidirectional override.
public Hyperlink AddHyperlink(Uri address, string anchor, string text, string screenTip = null, string target = null)
address
System.UriThe address for the specified link. The address can be an e-mail address, an Internet address, or a file name.
anchor
stringThe name of a bookmark in the current document which shall be the target of this hyperlink.
text
stringThe display text of the specified hyperlink.
screenTip
stringThe text that appears as a ScreenTip when the mouse pointer is positioned over the specified hyperlink.
target
stringThe name of the frame or window in which you want to load the specified hyperlink.
Adds an OMath to the end of the bidirectional override.
public OMath AddOMath()
Adds an OMath to the end of the bidirectional override.
public OMath AddOMath(OMathBuiltInEquation equation)
equation
OMathBuiltInEquationThe built-in equation to fill the OMath.
Adds an OMathParagraph to the end of the bidirectional override.
public OMathParagraph AddOMathParagraph()
The added OMathParagraph.
Adds an OMathParagraph to the end of the bidirectional override.
public OMathParagraph AddOMathParagraph(OMathBuiltInEquation equation)
equation
OMathBuiltInEquationThe built-in equation to fill the OMathParagraph.
The added OMathParagraph.
Adds a Run to the end of the bidirectional override.
public Run AddRun()
Adds a Run to the end of the bidirectional override.
public Run AddRun(Style style)
style
StyleThe run character or linked paragraph style.
Adds a Run to the end of the bidirectional override.
public Run AddRun(string text, Style style)
text
stringThe text of the run.
style
StyleThe run character or linked paragraph style.
Adds a Run to the end of the bidirectional override.
public Run AddRun(string text)
text
stringThe text of the run.
Adds a SimpleField to the end of the bidirectional override.
public SimpleField AddSimpleField(string code, string result)
code
stringThe field code.
result
stringThe result text of the inserted field.
The added SimpleField.
Adds a SimpleField to the end of the bidirectional override.
public SimpleField AddSimpleField(string code)
code
stringThe field code.
The added SimpleField.
Splits the run at a specified location relative to a specified child content.
public virtual BidirectionalOverride Split(ContentObject child, InsertLocation location)
child
ContentObjectThe child content where to split.
location
InsertLocationThe position relative to child
where to split.
The second part of the split run content.