コード例 #1
0
ファイル: ExcelPicture.cs プロジェクト: mmsgau/EPPlus-1
 internal override void CellAnchorChanged()
 {
     base.CellAnchorChanged();
     if (_fill != null)
     {
         _fill.SetTopNode(TopNode);
     }
     if (_border != null)
     {
         _border.TopNode = TopNode;
     }
     if (_effect != null)
     {
         _effect.TopNode = TopNode;
     }
 }
コード例 #2
0
ファイル: ExcelShapeBase.cs プロジェクト: mmsgau/EPPlus-1
 internal override void CellAnchorChanged()
 {
     base.CellAnchorChanged();
     if (_fill != null)
     {
         _fill.SetTopNode(TopNode);
     }
     if (_border != null)
     {
         _border.TopNode = TopNode;
     }
     if (_effect != null)
     {
         _effect.TopNode = TopNode;
     }
     if (_font != null)
     {
         _font.TopNode = TopNode;
     }
     if (_threeD != null)
     {
         _threeD.TopNode = TopNode;
     }
     if (_tailEnd != null)
     {
         _tailEnd.TopNode = TopNode;
     }
     if (_headEnd != null)
     {
         _headEnd.TopNode = TopNode;
     }
     if (_richText != null)
     {
         _richText.TopNode = TopNode;
     }
     if (_textBody != null)
     {
         _textBody.TopNode = TopNode;
     }
 }