DocumentBase.CurrentRsid 属性
获取 Microsoft Office Word 指派给文档中更改的一个随机数。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property CurrentRsid As Integer
public int CurrentRsid { get; }
属性值
类型:System.Int32
Microsoft Office Word 分配给文档中更改的一个随机数。
备注
如果 StoreRSIDOnSave 属性的 Options 属性为 true,则每次保存文档时,Word 都会生成一个随机数,应用程序使用该随机数来协助比较和合并文档。 Word 将随机数存储在一个表中,并在每次保存后更新该表。 CurrentRsid 属性返回 Word 分配给文档的最后一个数字。
示例
下面的代码示例将演示一个消息框,其中会显示 CurrentRsid 属性的值。 随后,该代码将向第一个段落中添加文本并保存文档,然后显示第二个消息框并在框中显示修改后的 CurrentRsid 属性值。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub GetDocumentCurrentRsid()
MessageBox.Show("CurrentRsid value before saving changes: " _
+ Me.CurrentRsid.ToString())
Me.Paragraphs(1).Range.Text = "Inserting some text..."
Me.Save()
MessageBox.Show("CurrentRsid value after saving changes: " _
+ Me.CurrentRsid.ToString())
End Sub
private void GetDocumentCurrentRsid()
{
MessageBox.Show("CurrentRsid value before saving changes: "
+ this.CurrentRsid.ToString());
this.Paragraphs[1].Range.Text = "Inserting some text...";
this.Save();
MessageBox.Show("CurrentRsid value after saving changes: "
+ this.CurrentRsid.ToString());
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。