ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.Data Namespace / Field Class / DefaultValue Property
Example

In This Topic
    DefaultValue Property (Field)
    In This Topic
    Gets or sets the user-defined default value of the field, which is used if the formula or value is null.
    Syntax
    'Declaration
     
    Public Property DefaultValue As String
    public string DefaultValue {get; set;}
    Example
    private void rptCalFields_ReportStart(object sender, System.EventArgs e)
    {
        this.field1.DefaultValue = "\"Does not compute\"";
        this.field1.FieldType = GrapeCity.ActiveReports.Data.FieldTypeEnum.None;
        this.field1.Formula = "ProductName + UnitPrice";
        this.field1.Name = "field1";
        this.field1.Tag = null;
    }
    Private Sub rptCalFields_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs)
       Me.field1.DefaultValue = """Does not compute"""
       Me.field1.FieldType = GrapeCity.ActiveReports.Data.FieldTypeEnum.None
       Me.field1.Formula = "ProductName + UnitPrice"
       Me.field1.Name = "field1"
       Me.field1.Tag = Nothing
    End Sub
    See Also