ActiveReports 6 Online Help
CheckSumEnabled Property
Example 

Determines whether a checksum of the barcode will be computed and included in the barcode when applicable.
Syntax
'Declaration
 
Public Property CheckSumEnabled As Boolean
public bool CheckSumEnabled {get; set;}

Property Value

Boolean.  Default is true.
Remarks
Some barcode styles require a checksum. CheckSumEnabled has no effect if the style is EAN-13 which requires a check digit.
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.barcode1.CheckSumEnabled = true;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.CheckSumEnabled = True
End Sub
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

Barcode Class
Barcode Members

Send Feedback