diff --git a/Excel/model/DrawingObjects/Format/TextBody.js b/Excel/model/DrawingObjects/Format/TextBody.js
index 2f8ed01f941d3c444d173a565140ac71a3f91be5..6be388124d3c8fbacf9889808c5d0806b60c1357 100644
--- a/Excel/model/DrawingObjects/Format/TextBody.js
+++ b/Excel/model/DrawingObjects/Format/TextBody.js
@@ -435,7 +435,12 @@ CTextBody.prototype =
 
     draw: function(graphics)
     {
-        this.content.Draw(0, graphics);
+        if(!graphics.IsNoSupportTextDraw)
+            this.content.Draw(0, graphics);
+        else
+        {
+            graphics.rect(0, 0, this.contentWidth, this.contentHeight);
+        }
     },
 
     Get_Styles: function(level)