DocumentBase.Compatibility 屬性
取得值,指出是否已啟用指定的相容性選項。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word.v4.0.Utilities (在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
語法
'宣告
Public ReadOnly Property Compatibility As Document_CompatibilityType
public Document_CompatibilityType Compatibility { get; }
屬性值
型別:Microsoft.Office.Tools.Word.Document_CompatibilityType
傳回 Document_CompatibilityType。
備註
Compatibility 屬性必須與下列參數一起使用。
參數 |
描述 |
---|---|
Type |
其中一個 WdCompatibility 值,指定要檢查的相容性選項。 |
如果使用未指定參數的 Compatibility 屬性,則它會傳回 Document_CompatibilityType 物件,該物件並不適合直接從您的程式碼使用。
相容性選項會影響文件在 Microsoft Office Word 中的顯示方式。 特定 WdCompatibility 值可能無法使用,視該語言支援 (例如美式英語),.. 您所選取或安裝的語言。
範例
在下列範例中,程式碼會在段落位於強制分頁後,隱藏該段落前面的空格。 若要使用這個範例,請在文件層級專案中的 ThisDocument 類別執行。
Private Sub DocumentCompatibility()
Me.Compatibility(Word.WdCompatibility.wdSuppressSpBfAfterPgBrk) = True
End Sub
private void DocumentCompatibility()
{
this.Compatibility[Word.WdCompatibility.wdSuppressSpBfAfterPgBrk] = true;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。