0
我正在嘗試使用SoftArtisans'ExcelApplication
,Anchor
和Shape
創建圖表。SoftArtisans:形狀內的文本方向
我能夠讓形狀出現在我的輸出文件上;但是,我有一個在造型示必須閱讀底部到頂部的文本的要求,即SHAPE必須顯示爲:
Ë
P
一個
ħ
小號
我創建使用以下代碼的文件,它存在於一個for
環路我的形狀:
if (prevRow != null && prevRow.FixtureY != pogPicDtl.FixtureY)
{
currRow += 3;
currCol = 0;
}
double prodX = (double)pogPicDtl.PositionX;
double prodY = (double)pogPicDtl.PositionY;
Shapes sheetShapes = wb.Worksheets[sheetNumber].Shapes;
Anchor anchor = wb.Worksheets[sheetNumber].CreateAnchor(currRow, currCol, prodX * .1, prodY);
Shape box = sheetShapes.CreateShape(ShapeType.Rectangle, anchor);
box.FillColor = blue;
box.FillTransparency = 0.50;
box.Height =(double) pogPicDtl.PositionHeight *10;
box.Width = (double)pogPicDtl.PositionWidth*10;
// I want this Text to read upw
box.Text = Math.Round(pogPicDtl.PositionX,0).ToString() + "," + Math.Round(pogPicDtl.PositionY,0).ToString();
這可能與SoftArtisans?當僅僅使用Excel而不是通過API使用Excel時,我肯定有可能在與Shape
相關時找到可修改的文本方向。