我希望你能帮助我。 我正在研究一个从excel数据创建技术图纸的工具。
该图纸上的一些描述框有子标题或上标。
我发现这篇文章与单词How to add subscript characters in paragraphs using Word Automation?
有关但是直接编辑了文本,我不确定当Text在Rectangle / Textbox中时是否可以,因为它是另一个对象,而不是直接页面。
这是一个codesnippet:
#asset {
position:absolute;
left:649px;
top:215px;
visibility: hidden;
animation: assetAnim 2s 1;
animation-delay: 1s;
}
@-webkit-keyframes assetAnim {
0% { opacity: 0.0; visibility: visible;}
100% { opacity: 1.0; visibility: visible;}
}
非常感谢
的Mirko
状态: drop方法:
"X" + **unsaturated + "unsat** ≤ " + DataServer.GETPROJECTDATA["Motor"]["Unsaturated commutation reactance " + unsaturated].Last.Value + " %";
和StringFormater.formatText:
public void drawer(ShapeItem sI, Visio.Master master)
{
//drops the shape at position x,y.
Visio.Shape shape = vPage.Drop(master, (sI.CoordX / 100000), (sI.CoordY / 100000));
if (master.Name.Equals("Rectangle") || master.Name.Equals("Rechteck"))
{
shape.Text = sI.ShapeText;
shape = StringFormater.formatText(shape, sI.ShapeName);
shape.LineStyle = "None";
shape.Style = "None";
}
}