MigraDoc.Rendering.ParagraphRenderer.IsPlainText C# (CSharp) 메소드

IsPlainText() 개인적인 메소드

private IsPlainText ( MigraDoc.DocumentObjectModel.DocumentObject docObj ) : bool
docObj MigraDoc.DocumentObjectModel.DocumentObject
리턴 bool
    bool IsPlainText(DocumentObject docObj)
    {
      if (docObj is Text)
        return !IsSoftHyphen(docObj) && !IsBlank(docObj);

      return false;
    }
ParagraphRenderer