Leadtools.Barcode Namespace > DatamatrixBarcodeWriteOptions Class : GroupTotal Property |
[DefaultValueAttribute()] [DisplayNameAttribute("Group total")] [CategoryAttribute(" Options")] [DescriptionAttribute("Group total for Datamatrix code symbols. Must be value greater than or equal to 0 and less than or equal to 16")] public int GroupTotal {get; set;}
'Declaration <DefaultValueAttribute()> <DisplayNameAttribute("Group total")> <CategoryAttribute(" Options")> <DescriptionAttribute("Group total for Datamatrix code symbols. Must be value greater than or equal to 0 and less than or equal to 16")> Public Property GroupTotal As Integer
'Usage Dim instance As DatamatrixBarcodeWriteOptions Dim value As Integer instance.GroupTotal = value value = instance.GroupTotal
[DefaultValueAttribute()] [DisplayNameAttribute("Group total")] [CategoryAttribute(" Options")] [DescriptionAttribute("Group total for Datamatrix code symbols. Must be value greater than or equal to 0 and less than or equal to 16")] public int GroupTotal {get; set;}
@property (nonatomic, assign) int groupTotal;
public int getGroupTotal() public void setGroupTotal(int value)
DefaultValueAttribute() DisplayNameAttribute("Group total") CategoryAttribute(" Options") DescriptionAttribute("Group total for Datamatrix code symbols. Must be value greater than or equal to 0 and less than or equal to 16")
get_GroupTotal();
set_GroupTotal(value);
Object.defineProperty('GroupTotal');
[DefaultValueAttribute()] [DisplayNameAttribute("Group total")] [CategoryAttribute(" Options")] [DescriptionAttribute("Group total for Datamatrix code symbols. Must be value greater than or equal to 0 and less than or equal to 16")] public: property int GroupTotal { int get(); void set ( int value); }
Datamatrix barcodes support the concept of groups of related symbols. Use the following properties to write a group of related symboles:
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.
For an example, refer to DatamatrixBarcodeWriteOptions.