CodeGlyphX logo
CodeGlyphX

API Reference

Struct

Gs1Element

Namespace CodeGlyphX
Assembly CodeGlyphX
Base ValueType
Modifiers sealed

Represents a GS1 element (AI + data) with explicit length semantics.

Inheritance

  • ValueType
  • Gs1Element

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Returned or exposed by

Accepted by parameters

Methods

public static Gs1Element Fixed(String ai, String data) #
Returns: Gs1Element

Creates a fixed-length GS1 element.

Parameters

ai System.String requiredposition: 0
data System.String requiredposition: 1
public static Gs1Element Variable(String ai, String data) #
Returns: Gs1Element

Creates a variable-length GS1 element.

Parameters

ai System.String requiredposition: 0
data System.String requiredposition: 1

Properties

public String Ai { get; } #

Application Identifier.

public String Data { get; } #

Data associated with the AI.

public Boolean IsVariableLength { get; } #

Indicates whether the element is variable length.