public void SetLabelSuffix() { if (FLabelSuffix != null) return; DLScannerSetup scannerSetup = new DLScannerSetup(); scannerSetup.init(); FLabelSuffix = scannerSetup.getParameterString(1); scannerSetup.setParameterString(1, "\r"); scannerSetup.save(); scannerSetup.update(); }
public void RestoreLabelSuffix() { if (FLabelSuffix == null) return; DLScannerSetup scannerSetup = new DLScannerSetup(); scannerSetup.init(); scannerSetup.setParameterString(1, FLabelSuffix); scannerSetup.save(); scannerSetup.update(); FLabelSuffix = null; }
public void SetLabelSuffix() { if (FLabelSuffix != null) { return; } DLScannerSetup scannerSetup = new DLScannerSetup(); scannerSetup.init(); FLabelSuffix = scannerSetup.getParameterString(1); scannerSetup.setParameterString(1, "\r"); scannerSetup.save(); scannerSetup.update(); }
public void RestoreLabelSuffix() { if (FLabelSuffix == null) { return; } DLScannerSetup scannerSetup = new DLScannerSetup(); scannerSetup.init(); scannerSetup.setParameterString(1, FLabelSuffix); scannerSetup.save(); scannerSetup.update(); FLabelSuffix = null; }