Word Reports
MinValueDateText Property
Example 



KellermanSoftware.WordReports Namespace > Configuration Class : MinValueDateText Property
The default text when a date is DateTime.MinValue. The default is string.Empty
Syntax
Public Property MinValueDateText As String
Dim instance As Configuration
Dim value As String
 
instance.MinValueDateText = value
 
value = instance.MinValueDateText
public string MinValueDateText {get; set;}
public:
property String^ MinValueDateText {
   String^ get();
   void set (    String^ value);
}
Example
//To run this example code, create a word document called ExampleTemplate.docx with the text [ReplaceMe] in the document
 
WordReportsGenerator generator = new WordReportsGenerator(); //Trial Mode
//WordReportsGenerator generator = new WordReportsGenerator("place user name here", "place license key here"); //License Mode
 
const string sourceDocumentPath = @"Test Documents\ExampleTemplate.docx";
const string outputDocumentPath = "ExampleOutput.docx";
 
using (Document document = generator.DocumentFactory(sourceDocumentPath))
{
    Dictionary<string, ReplacementItem> replacement =
        new Dictionary<string, ReplacementItem>
        {
            {
                "[ReplaceMe]",
                new ReplacementItem { Value = DateTime.MinValue }
            }
        };
 
    generator.Config.MinValueDateText = "Min";
 
    generator.Replace(document, replacement);
 
    generator.SaveDocument(document, outputDocumentPath);
}
'To run this example code, create a word document called ExampleTemplate.docx with the text [ReplaceMe] in the document
 
Dim generator As New WordReportsGenerator() 'Trial Mode
'WordReportsGenerator generator = new WordReportsGenerator("place user name here", "place license key here"); //License Mode
 
Const sourceDocumentPath As String = "Test Documents\ExampleTemplate.docx"
Const outputDocumentPath As String = "ExampleOutput.docx"
 
Using document As Document = generator.DocumentFactory(sourceDocumentPath)
    Dim replacement As New Dictionary(Of String, ReplacementItem)() From {{ "[ReplaceMe]", New ReplacementItem With {.Value = Date.MinValue} }}
 
    generator.Config.MinValueDateText = "Min"
 
    generator.Replace(document, replacement)
 
    generator.SaveDocument(document, outputDocumentPath)
End Using
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Configuration Class
Configuration Members