我要求以编程方式(在C#中)打开或关闭特定段落的悬挂缩进。
我创建了一个添加项,其中包含一个按钮,单击该按钮时,执行我尝试执行此操作的代码。它是一个切换,所以首先单击添加悬挂缩进,然后第二次单击应该删除它。
简而言之,段落>缩进中的设置,然后设置“特殊”等于 无 或 挂 。
我最好的尝试是使用以下代码:
foreach (Footnote rngWord in Globals.OSAXWord.Application.ActiveDocument.Content.Footnotes)
rngWord.Range.ParagraphFormat.TabHangingIndent(
rngWord.Range.ParagraphFormat.FirstLineIndent == 0 ? 1 : -1);
由于某种原因,它只修改段落中的最后一行。我需要它是除了第一个之外的所有行。我做错了什么?
修改:
注意 - 我实际上是在我的文档中的脚注上执行此操作。
答案 0 :(得分:4)
对于任何可能碰巧碰到这个问题的人 - 这是我解决的问题:
try
{
// Loop through each footnote in the word doc.
foreach (Footnote rngWord in Microsoft.Office.Interop.Word.Application.ActiveDocument.Content.Footnotes)
{
// For each paragraph in the footnote - set the indentation.
foreach (Paragraph parag in rngWord.Range.Paragraphs)
{
// If this was not previously indented (i.e. FirstLineIndent is zero), then indent.
if (parag.Range.ParagraphFormat.FirstLineIndent == 0)
{
// Set hanging indent.
rngWord.Range.ParagraphFormat.TabHangingIndent(1);
}
else
{
// Remove hanging indent.
rngWord.Range.ParagraphFormat.TabHangingIndent(-1);
}
}
}
// Force the screen to refresh so we see the changes.
Microsoft.Office.Interop.Word.Application.ScreenRefresh();
}
catch (Exception ex)
{
// Catch any exception and swollow it (i.e. do nothing with it).
//MessageBox.Show(ex.Message);
}