File BradyPrintJobConsts.h
File List > BradyPrintJobConsts.h
Go to the documentation of this file
//(c) 2026 Brady Worldwide, Inc. All Rights Reserved
#pragma once
// Use __cplusplus macro to detect if the compiler is C++
#ifdef __cplusplus
namespace BradyPrintJobConsts {
#endif
enum PageOrientation
{
Portrait = 1,
Landscape = 2
};
enum CutterMode
{
NoCut = 0,
EndOfLabel = 1,
EndOfJob = 2,
CutAfterSet = 3,
PerfCutEndOfJob = 4,
PerfCutAfterSet = 5,
PerfAndFullCutAfterSet = 6
};
enum PostPrintAccessory
{
TearBar = 0,
AutoCutter = 1,
PeelWithoutLabelTakenSensor = 2,
PeelWithLabelTakenSensor = 3,
PerfCutter = 4,
Rewinder = 5
};
enum RfidMemoryLocation
{
ElectronicProductCode = 0,
ApplicationFamilyIdentifier = 1,
TagIdentifier = 2,
User = 3,
AccessPassword = 4,
KillPassword = 5
};
#ifdef __cplusplus
}
#endif