ActiveReports3 Request technical support
CheckSumEnabled Property
See Also  Example


Determines whether a checksum of the barcode will be computed and included in the barcode when applicable.

Syntax

Visual Basic (Declaration) 
Public Property CheckSumEnabled As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Barcode
Dim value As Boolean
 
instance.CheckSumEnabled = value
 
value = instance.CheckSumEnabled
C# 
public bool CheckSumEnabled {get; set;}

Return Value

Boolean.  Default is true.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
   
this.barcode1.CheckSumEnabled = true;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.CheckSumEnabled = True
End Sub

Remarks

Some barcode styles require a checksum. CheckSumEnabled has no effect if the style is EAN-13 which requires a check digit.

See Also