gpt4 book ai didi

c# - 使用 EPPlus 复制/克隆 Excel 形状?

转载 作者:行者123 更新时间:2023-11-30 17:52:24 25 4
gpt4 key购买 nike

是否可以使用 EPPlus 库在 Excel 工作表中创建形状的副本/克隆?

我知道我可以得到一个现有的对象

var shapeExisting = ws.Drawings["ShapeName"];

(ws 是工作表对象)

并使用

创建新形状
var shapeNew = ws.Drawings.AddShape("NewName", eShapeStyle.RtTriangle);

但是,我找不到克隆 shapeExisting 的方法。

最佳答案

似乎没有内置功能,所以在找到更好的解决方案之前,我将以下方法添加到 EPPlus\Drawings\ExcelDrawings.cs

public ExcelShape CloneShape(string SourceName, string TargetName)
{
if ( _drawingNames.ContainsKey(TargetName.ToLower()))
{
throw new Exception("Target name already exists in the drawings collection");
}

if (!_drawingNames.ContainsKey(SourceName.ToLower()))
{
throw new Exception("Source shape does not exist in the drawings collection");
}

ExcelShape shape = new ExcelShape(this, this._drawingsXml,
(ExcelShape) this[SourceName]);
shape.Name = TargetName;
_drawings.Add(shape);
_drawingNames.Add(TargetName.ToLower(), _drawings.Count - 1);
return shape;
}

还有 ExcelShape.cs 中的这个构造函数:

internal ExcelShape(ExcelDrawings drawings, XmlDocument DrawingsXml, ExcelShape shapeSource) :
base(drawings, shapeSource._topNode.Clone(), "xdr:sp/xdr:nvSpPr/xdr:cNvPr/@name")

{
this.init();
XmlNode colNode = DrawingsXml.SelectSingleNode("//xdr:wsDr", NameSpaceManager);
colNode.AppendChild(this._topNode);
}

关于c# - 使用 EPPlus 复制/克隆 Excel 形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18380656/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com