今天,我们发布了spire.presentation 4.11。该版本带来了一些新的功能,例如:支持高亮指定文本,支持设置图表标题的旋转角度,支持设置坐标轴的类型,并且修复一系列的漏洞。具体更新如下。 新功能: 新增替换文本的方法。 replacefirsttext(string matchedstring, string newvalue, bool casesensitive); replacealltext(string matchedstring, string newvalue, bool casesensitive); 支持设置图表标题的旋转角度。 chart.charttitle.textproperties.rotationangle=-30; 支持高亮指定的文本。 iautoshape shape=ppt.slides[0].shapes[0] as iautoshape texthighlightingoptions options=new texthighlightingoptions(); options.casesensitive =true; options.wholewordsonly=true; shape.textframe.hightlighttext("text",color.red,options); 支持设置坐标轴的类型。 chart.primarycategoryaxis.axistype = spire.presentation.charts.axistype.dateaxis; chart.primarycategoryaxis.majorunitscale =…