_Document.RemoveDateAndTime Property 

Returns or sets a Boolean indicating whether a document stores the date and time metadata for tracked changes.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim _Document1 As _Document

Dim returnValue As Boolean
returnValue = _Document1.RemoveDateAndTime

Dim sampleValue As Boolean
_Document1.RemoveDateAndTime = sampleValue

Syntax

Property RemoveDateAndTime() As Boolean
bool RemoveDateAndTime {get; set;}
property Boolean RemoveDateAndTime{
    Boolean get();
    Void set(Boolean);
}
public boolean get_RemoveDateAndTime();
public void set_RemoveDateAndTime(boolean);
function get RemoveDateAndTime() : Boolean;
function set RemoveDateAndTime(Boolean);

Remarks

This property returns True if date and time stamp information is removed from tracked changes, and False if it is not removed. Set the property value to True or False to enable or disable the functionality.

Use in conjunction with the RemovePersonalInformation property to help remove personal information from the document properties.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

_Document Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

_Document Members