Skip to main content

Type_CustomerASN_String

Type_CustomerASN_String = CustomerASN

Example

procedure SetCustomerASNTypeCode(var TypeCode: String);
begin
TypeCode := Type_CustomerASN_String;
end;

Usage

Type_CustomerASN_String provides the exact canonical CustomerASN token paired with Velox ASN type number 1.

Additional Technical Info

Type_CustomerASN_String is the string literal 'CustomerASN', paired with numeric Type_CustomerASN (1). The generated declaration omits display quotes, but the compiled value is a Delphi String.

Use it for the canonical ASN type token rather than constructing text from UI labels or legacy symbol names. There is no separate ASN_Type_CustomerASN_String compatibility constant.

GetASNTypeNum accepts case variants such as customerasn but does not trim or parse numeric text. GetASNTypeCode emits the exact spelling shown here for number 1. Unknown values return Null.

The token is a product vocabulary value, not a localized caption or proof of document direction. Reading it performs no I/O or mutation.

The example is source-reviewed only.

Created 2026-07-15