GetCurrentParagraph
返回光标所在的当前段落。
语法
expression.GetCurrentParagraph();
expression - 表示 ApiDocumentContent 类的变量。
参数
此方法没有任何参数。
返回值
示例
访问演示文稿中形状文本内容中的当前段落。
// How do I get the paragraph where the cursor is positioned in a shape in a presentation?
// Retrieve the active paragraph from a shape and append additional text to it.
const presentation = Api.GetPresentation();
const slide = presentation.GetSlideByIndex(0);
slide.RemoveAllObjects();
const fill = Api.CreateSolidFill(Api.RGB(200, 191, 231));
const stroke = Api.CreateStroke(0, Api.CreateNoFill());
const shape = Api.CreateShape('rect', Api.MillimetersToEmus(300), Api.MillimetersToEmus(130), fill, stroke);
shape.SetPosition(Api.MillimetersToEmus(20), Api.MillimetersToEmus(35));
const docContent = shape.GetContent();
const paragraph = docContent.GetElement(0);
paragraph.AddText('First paragraph inside the shape.');
const newParagraph = Api.CreateParagraph();
newParagraph.AddText('Second paragraph inside the shape.');
docContent.Push(newParagraph);
const currentParagraph = docContent.GetCurrentParagraph();
if (currentParagraph) {
currentParagraph.AddText(' (Current paragraph detected!)');
}
slide.AddObject(shape);