ContentControl.DateStorageFormat property (Word)

Returns or sets a WdContentControlDateStorageFormat that represents the format for storage and retrieval of dates when a date content control is bound to the XML data store of the active document. Read/write.

Syntax

expression. DateStorageFormat

expression An expression that returns a ContentControl object.

Remarks

The DateStorageFormat property allows you to store dates in date format, date/time format, or text format.

Example

The following example adds a date content control to the active document and specifies the date, the date display format, and the date storage format.

Dim objCC As ContentControl 
 
Set objCC = ActiveDocument.ContentControls.Add(wdContentControlDate) 
 
objCC.Title = "Review Period End Date" 
objCC.DateDisplayFormat = "MMMM d, yyyy" 
objCC.DateStorageFormat = wdContentControlDateStorageDate 
objCC.Range.Text = "January 1, 2007"

See also

ContentControl Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.