本文整理汇总了C#中Body.PrependChild方法的典型用法代码示例。如果您正苦于以下问题:C# Body.PrependChild方法的具体用法?C# Body.PrependChild怎么用?C# Body.PrependChild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Body
的用法示例。
在下文中一共展示了Body.PrependChild方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ValidateBody
//.........这里部分代码省略.........
//</xs:group>
//<xs:group name="EG_RangeMarkupElements">
// <xs:choice>
// <xs:group ref="EG_RangeMarkupElementsNoRev" minOccurs="0" maxOccurs="unbounded" />
// <xs:group ref="EG_RangeMarkupElementsRev" minOccurs="0" maxOccurs="unbounded" />
// <xs:element ref="w14:customXmlConflictInsRangeStart" minOccurs="0" />
// <xs:element ref="w14:customXmlConflictInsRangeEnd" minOccurs="0" />
// <xs:element ref="w14:customXmlConflictDelRangeStart" minOccurs="0" />
// <xs:element ref="w14:customXmlConflictDelRangeEnd" minOccurs="0" />
// </xs:choice>
//</xs:group>
//<xsd:group name="EG_MathContent">
// <xsd:choice>
// <xsd:element ref="m:oMathPara"></xsd:element>
// <xsd:element ref="m:oMath"></xsd:element>
// </xsd:choice>
//</xsd:group>
// ################ the above schema has been changed by EcmaD ##############
// ***** good case ******
// empty is ok
target.Validate(validationContext);
Assert.True(actual.Valid);
//
body.AppendChild(new SectionProperties());
target.Validate(validationContext);
Assert.True(actual.Valid);
body.PrependChild(new AltChunk());
target.Validate(validationContext);
Assert.True(actual.Valid);
// multiple AltChunk is ok
body.PrependChild(new AltChunk());
target.Validate(validationContext);
Assert.True(actual.Valid);
body.InsertAfter(new Paragraph(), body.FirstChild);
target.Validate(validationContext);
Assert.True(actual.Valid);
body.PrependChild(new MoveFromRangeStart());
target.Validate(validationContext);
Assert.True(actual.Valid);
body.PrependChild(new MoveFromRun());
target.Validate(validationContext);
Assert.True(actual.Valid);
//body.PrependChild(new DocumentFormat.OpenXml.Math.OfficeMath());
//target.Validate(validationContext);
//Assert.True(actual.Valid);
//body.PrependChild(new DocumentFormat.OpenXml.Math.OfficeMath());
//target.Validate(validationContext);
//Assert.True(actual.Valid);
body.PrependChild(new MoveFromRun());
target.Validate(validationContext);
Assert.True(actual.Valid);
示例2: DomReaderMiscNodeTest
public void DomReaderMiscNodeTest()
{
Body body = new Body(new Paragraph(new ParagraphProperties(), new Run(new Text("test"))));
body.PrependChild( new OpenXmlMiscNode(System.Xml.XmlNodeType.Comment, "<!-- start body -->"));
//======== new test with a new reader ========
OpenXmlReader reader = OpenXmlReader.Create(body, true); // read misc nodes
Assert.False(reader.EOF);
bool moved = reader.Read();
Assert.True(moved);
Assert.False(reader.EOF);
Assert.Equal(0, reader.Depth);
Assert.True(reader.IsStartElement);
Assert.False(reader.IsEndElement);
Assert.False(reader.IsMiscNode);
Assert.Equal("body", reader.LocalName);
moved = reader.Read();
Assert.True(moved);
Assert.False(reader.EOF);
Assert.Equal(1, reader.Depth);
Assert.False(reader.IsStartElement);
Assert.False(reader.IsEndElement);
Assert.True(reader.IsMiscNode);
Assert.Equal("#comment", reader.LocalName);
Assert.Equal(string.Empty, reader.Prefix);
Assert.Equal(string.Empty, reader.NamespaceUri);
reader.Close();
// test case: for ReadFirstChild
reader = OpenXmlReader.Create(body, true); // read misc nodes
Assert.False(reader.EOF);
moved = reader.Read();
Assert.False(reader.EOF);
moved = reader.ReadFirstChild();
Assert.True(moved);
Assert.False(reader.EOF);
Assert.Equal(1, reader.Depth);
Assert.False(reader.IsStartElement);
Assert.False(reader.IsEndElement);
Assert.True(reader.IsMiscNode);
Assert.Equal("#comment", reader.LocalName);
Assert.Equal(string.Empty, reader.Prefix);
Assert.Equal(string.Empty, reader.NamespaceUri);
reader.Close();
OpenXmlElement miscNode = body.RemoveChild(body.FirstChild);
body.AppendChild(miscNode);
reader = OpenXmlReader.Create(body, true); // read misc nodes
Assert.False(reader.EOF);
moved = reader.Read();
Assert.False(reader.EOF);
moved = reader.ReadFirstChild();
reader.Skip();
Assert.True(moved);
Assert.False(reader.EOF);
Assert.Equal(1, reader.Depth);
Assert.False(reader.IsStartElement);
Assert.False(reader.IsEndElement);
Assert.True(reader.IsMiscNode);
Assert.Equal(string.Empty, reader.Prefix);
Assert.Equal(string.Empty, reader.NamespaceUri);
reader.Close();
// test case: root element is misc node
reader = OpenXmlReader.Create(new OpenXmlMiscNode(System.Xml.XmlNodeType.ProcessingInstruction, "<?pi test?>"), true);
moved = reader.Read();
Assert.True(moved);
Assert.False(reader.EOF);
Assert.Equal(0, reader.Depth);
Assert.False(reader.IsStartElement);
Assert.False(reader.IsEndElement);
Assert.True(reader.IsMiscNode);
Assert.Equal("pi", reader.LocalName);
Assert.Equal(string.Empty, reader.Prefix);
Assert.Equal(string.Empty, reader.NamespaceUri);
reader.Close();
// case bug #253890
body = new Body(new Paragraph(new ParagraphProperties(), new Run(new Text("test"))));
miscNode = body.AppendChild(new OpenXmlMiscNode(System.Xml.XmlNodeType.Comment, "<!-- start body -->"));
reader = OpenXmlReader.Create(body.FirstChild, true);
moved = reader.Read();
Assert.True(moved);
//.........这里部分代码省略.........
示例3: GetXPathTest
public void GetXPathTest()
{
XmlPath actual;
Paragraph p = new Paragraph(new Run(), new BookmarkEnd(), new Run());
Body body = new Body(p);
actual = XmlPath.GetXPath(p);
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[1]", actual.XPath);
Assert.Equal(1, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
actual = XmlPath.GetXPath(p.FirstChild);
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[1]/w:r[1]", actual.XPath);
Assert.Equal(1, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
body.PrependChild(new Paragraph());
actual = XmlPath.GetXPath(p.FirstChild.NextSibling());
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[2]/w:bookmarkEnd[1]", actual.XPath);
Assert.Equal(1, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
var r = p.LastChild;
actual = XmlPath.GetXPath(r);
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[2]/w:r[2]", actual.XPath);
Assert.Equal(1, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
var unknown1 = p.PrependChild(new OpenXmlUnknownElement("my:test", "http://my"));
actual = XmlPath.GetXPath(unknown1);
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[2]/my:test[1]", actual.XPath);
Assert.Equal(2, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
Assert.Equal(@"xmlns:my=""http://my""", actual.NamespacesDefinitions[1]);
var unknown2 = p.AppendChild(new OpenXmlUnknownElement("my:test", "http://my"));
actual = XmlPath.GetXPath(unknown2);
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[2]/my:test[2]", actual.XPath);
Assert.Equal(2, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
Assert.Equal(@"xmlns:my=""http://my""", actual.NamespacesDefinitions[1]);
var miscNode = p.AppendChild(new OpenXmlMiscNode(System.Xml.XmlNodeType.Comment, "<!-- comment -->"));
actual = XmlPath.GetXPath(miscNode);
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[2]/<!-- comment -->", actual.XPath);
Assert.Equal(1, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
actual = XmlPath.GetXPath(r);
Assert.Null(actual.PartUri);
Assert.Equal(@"/w:body[1]/w:p[2]/w:r[2]", actual.XPath);
Assert.Equal(1, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
using (var stream = new MemoryStream())
using (var doc = WordprocessingDocument.Create(stream, WordprocessingDocumentType.Document))
{
doc.AddMainDocumentPart();
doc.MainDocumentPart.Document = new Document(body);
actual = XmlPath.GetXPath(r);
Assert.Equal(doc.MainDocumentPart.Uri, actual.PartUri);
Assert.Equal(new Uri("/word/document.xml", UriKind.Relative), actual.PartUri);
Assert.Equal(@"/w:document[1]/w:body[1]/w:p[2]/w:r[2]", actual.XPath);
Assert.Equal(1, actual.NamespacesDefinitions.Count);
Assert.Equal(@"xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main""", actual.NamespacesDefinitions[0]);
}
}