←Select platform

GroupTotal Property

Summary

Gets or sets a value that indicates the group total to use when writing Datamatrix symbols.

Syntax
C#
VB
Objective-C
C++
Java
public int GroupTotal { get; set; } 
Public Property GroupTotal As Integer 
@property (nonatomic, assign) NSInteger groupTotal 
public int getGroupTotal() 
public void setGroupTotal(int value) 
public: 
property int GroupTotal { 
   int get(); 
   void set (    int ); 
} 

Property Value

An Int32 that indicates the total groups to use when writing Datamatrix symbols. The value must be greater than or equal to 0 and less than or equal to 16. Default value is 0.

Remarks

Datamatrix barcodes support the concept of groups of related symbols. Use the following properties to write a group of related symbols:

  • GroupTotal - Specifies the total number of Datamatrix symbols in the group specified by GroupNumber. The maximum number of symbols in a group is 16.

  • GroupNumber - Specifies a group of Datamatrix symbols. The maximum number of symbols in a group is 16. Use this property to specify the order of each barcode in a group so that when you read each barcode's data, you can put the large pieces of data back together in the correct order.

  • FileIdNumberLowByte - Specifies the low byte of the file ID number. The number must range from 1 to 254. Use this as an ID for the group since an image can have multiple groups.

  • FileIdNumberHighByte - Specifies the high byte of the file ID number. The number must range from 1 to 254. Use this as an ID for the group since an image can have multiple groups.

Example

For an example, refer to DatamatrixBarcodeWriteOptions.

Requirements

Target Platforms

Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Barcode Assembly