зеркало из https://github.com/wieslawsoltes/SVG.git
30 строки
746 B
C#
30 строки
746 B
C#
#if !NO_SDC
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Svg
|
|
{
|
|
public partial class SvgTextRef : SvgTextBase
|
|
{
|
|
internal override IEnumerable<ISvgNode> GetContentNodes()
|
|
{
|
|
var refText = this.OwnerDocument.IdManager.GetElementById(this.ReferencedElement) as SvgTextBase;
|
|
IEnumerable<ISvgNode> contentNodes = null;
|
|
|
|
if (refText == null)
|
|
{
|
|
contentNodes = base.GetContentNodes();
|
|
}
|
|
else
|
|
{
|
|
contentNodes = refText.GetContentNodes();
|
|
}
|
|
|
|
contentNodes = contentNodes.Where(o => !(o is ISvgDescriptiveElement));
|
|
|
|
return contentNodes;
|
|
}
|
|
}
|
|
}
|
|
#endif
|