Commit f5f6df06 authored by konovalovsergey's avatar konovalovsergey

write innerHorizontal/Vertical border

parent 975f9bc0
...@@ -1685,8 +1685,8 @@ ...@@ -1685,8 +1685,8 @@
if(null != border.r) if(null != border.r)
this.bs.WriteItem(c_oSerBorderTypes.End, function(){oThis.WriteBorderProp(border.r);}); this.bs.WriteItem(c_oSerBorderTypes.End, function(){oThis.WriteBorderProp(border.r);});
//Horizontal //Horizontal
if(null != border.h) if(null != border.ih)
this.bs.WriteItem(c_oSerBorderTypes.Horizontal, function(){oThis.WriteBorderProp(border.h);}); this.bs.WriteItem(c_oSerBorderTypes.Horizontal, function(){oThis.WriteBorderProp(border.ih);});
//Start //Start
if(null != border.l) if(null != border.l)
this.bs.WriteItem(c_oSerBorderTypes.Start, function(){oThis.WriteBorderProp(border.l);}); this.bs.WriteItem(c_oSerBorderTypes.Start, function(){oThis.WriteBorderProp(border.l);});
...@@ -1694,8 +1694,8 @@ ...@@ -1694,8 +1694,8 @@
if(null != border.t) if(null != border.t)
this.bs.WriteItem(c_oSerBorderTypes.Top, function(){oThis.WriteBorderProp(border.t);}); this.bs.WriteItem(c_oSerBorderTypes.Top, function(){oThis.WriteBorderProp(border.t);});
//Vertical //Vertical
if(null != border.v) if(null != border.iv)
this.bs.WriteItem(c_oSerBorderTypes.Vertical, function(){oThis.WriteBorderProp(border.v);}); this.bs.WriteItem(c_oSerBorderTypes.Vertical, function(){oThis.WriteBorderProp(border.iv);});
//DiagonalDown //DiagonalDown
if(null != border.dd) if(null != border.dd)
this.bs.WriteItem(c_oSerBorderTypes.DiagonalDown, function(){oThis.memory.WriteBool(border.dd);}); this.bs.WriteItem(c_oSerBorderTypes.DiagonalDown, function(){oThis.memory.WriteBool(border.dd);});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment