2. Property
The constant values used by the dll files provided are declared in BxlConst.cs.
The development environment is C#.
2-1 CharacterSet (LONG R/W)
The attribute which defines the printer's code page is set to BXL_CS_437 by default. Use
SetCharacterSet(), GetCharacterSet() to set new values or load the preset values.
The following code pages can be used:
BxlWinPhoneSDK bxlPrinter = new BxlWinPhoneSDK();
var ret = await bxlPrinter.ConnectToPrinterAsync(“port info..”);
……
bxlPrinter.SetCharacterSet(BXL_CS_PC850);
…...
int32 nCharSet;
nCharSet = bxlPrinter.GetCharacterSet();
……