Udostępnij za pośrednictwem


Właściwość DocumentBase.DisableFeaturesIntroducedAfter —

Pobiera lub ustawia wartość określającą, czy wszystkie funkcje dodane po określonej wersji programu Microsoft Office Word są wyłączone tylko w dokumencie.

Przestrzeń nazw:  Microsoft.Office.Tools.Word
Zestaw:  Microsoft.Office.Tools.Word.v4.0.Utilities (w Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Składnia

'Deklaracja
Public Property DisableFeaturesIntroducedAfter As WdDisableFeaturesIntroducedAfter
public WdDisableFeaturesIntroducedAfter DisableFeaturesIntroducedAfter { get; set; }

Wartość właściwości

Typ: Microsoft.Office.Interop.Word.WdDisableFeaturesIntroducedAfter
Jednym z WdDisableFeaturesIntroducedAfter wartości.

Uwagi

DisableFeatures Właściwość musi być równa true przed ustawienie DisableFeaturesIntroducedAfter właściwość.W przeciwnym wypadku ustawienia zostaną wprowadzone i pozostanie przy ustawieniu domyślnym programu Word 97 dla systemu Windows.

DisableFeaturesIntroducedAfter Właściwość ma wpływ tylko na dokumencie, dla którego właściwość jest ustawiona.Aby ustawić opcji globalnych dla aplikacji wyłączyć funkcje dla wszystkich dokumentów, należy użyć DisableFeaturesIntroducedAfterbyDefault właściwość.

Przykłady

Poniższy przykład kodu wyłącza wszystkie funkcje dodane po programu Word dla Windows 95, w wersji 7.0 i 7.0a dla dokumentu.Aby wykorzystać ten przykład, należy uruchomić go z ThisDocument klasy w projekcie na poziomie dokumentu.

Private Sub DocumentDisableFeaturesIntroducedAfter()
    If Me.DisableFeatures = True Then
        Me.DisableFeaturesIntroducedAfter = Word.WdDisableFeaturesIntroducedAfter.wd70
    Else
        Me.DisableFeatures = True
        Me.DisableFeaturesIntroducedAfter = Word.WdDisableFeaturesIntroducedAfter.wd70
    End If
End Sub 
private void DocumentDisableFeaturesIntroducedAfter()
{
    if (this.DisableFeatures == true)
    {
        this.DisableFeaturesIntroducedAfter = Word.
            WdDisableFeaturesIntroducedAfter.wd70;
    }
        else
    {
        this.DisableFeatures = true;
        this.DisableFeaturesIntroducedAfter = Word.
            WdDisableFeaturesIntroducedAfter.wd70;
    }
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

DocumentBase Klasa

Przestrzeń nazw Microsoft.Office.Tools.Word