Svg.SvgTextBase.GetContentNodes C# (CSharp) Method

GetContentNodes() private method

private GetContentNodes ( ) : IEnumerable
return IEnumerable
        internal virtual IEnumerable<ISvgNode> GetContentNodes()
        {
            return (this.Nodes == null || this.Nodes.Count < 1 ? this.Children.OfType<ISvgNode>().Where(o => !(o is ISvgDescriptiveElement)) : this.Nodes);
        }