本文整理汇总了C#中OpenXmlElement.GetNextNonMiscElementSibling方法的典型用法代码示例。如果您正苦于以下问题:C# OpenXmlElement.GetNextNonMiscElementSibling方法的具体用法?C# OpenXmlElement.GetNextNonMiscElementSibling怎么用?C# OpenXmlElement.GetNextNonMiscElementSibling使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OpenXmlElement
的用法示例。
在下文中一共展示了OpenXmlElement.GetNextNonMiscElementSibling方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetChildMc
private static OpenXmlElement GetChildMc(this OpenXmlElement parent, OpenXmlElement child, MCContext mcContext, FileFormatVersions format)
{
// Use stack to cache the next siblings in different levels.
Stack<OpenXmlElement> nextSiblings = new Stack<OpenXmlElement>();
while (child != null)
{
var acb = child as AlternateContent;
if (acb == null && child.IsInVersion(format))
{
return child;
}
else
{
mcContext.PushMCAttributes2(child.MCAttributes, child.LookupNamespace);
if (acb != null)
{
nextSiblings.Push(child.GetNextNonMiscElementSibling());
var select = mcContext.GetContentFromACBlock(acb, format);
if (select != null)
{
child = select.GetFirstNonMiscElementChild();
}
else
{
// The ACB has no children elements.
// case like: <acb/> <acb><choice/><fallback/></acb>
child = null;
}
}
else
{
// Ignorable element, skip it
if (mcContext.IsIgnorableNs(child.NamespaceUri))
{
// Any element marked with ProcessContent should be an Ignorable Element
if (mcContext.IsProcessContent(child))
{
nextSiblings.Push(child.GetNextNonMiscElementSibling());
//
child = child.GetFirstNonMiscElementChild();
}
else
{
child = child.GetNextNonMiscElementSibling();
}
}
else
{
mcContext.PopMCAttributes2();
return child;
}
}
mcContext.PopMCAttributes2();
}
while (child == null && nextSiblings.Count > 0)
{
child = nextSiblings.Pop();
}
}
// child is null.
return child;
}
示例2: GetNextChildMc
internal static OpenXmlElement GetNextChildMc(this OpenXmlElement parent, OpenXmlElement child, MCContext mcContext, FileFormatVersions format)
{
var next = child.GetNextNonMiscElementSibling();
var mcTier = child.Parent;
if (next == null && mcTier != parent)
{
// the child must be under element in ProcessContent or ACB
if (mcTier is AlternateContentChoice || mcTier is AlternateContentFallback)
{
mcTier = mcTier.Parent;
}
Debug.Assert(mcTier != null);
// there is no more next sibling in this level, then try to find the next siblig of the up level.
return parent.GetNextChildMc(mcTier, mcContext, format);
}
return parent.GetChildMc(next, mcContext, format);
}