Svg.SvgTextBase.ShouldWriteElement C# (CSharp) Метод

ShouldWriteElement() публичный метод

Empty text elements are not legal - only write this element if it has children.
public ShouldWriteElement ( ) : bool
Результат bool
        public override bool ShouldWriteElement()
        {
            return (this.HasChildren() || this.Nodes.Count > 0);
        }