Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumLogMode

  • Android
  • Objective-C
  • Swift
public class EnumLogMode {
    // Don't save the log.
    public static final int LGM_OFF = 0;
    // Save the log as text.
    public static final int LGM_TEXT = 2;
}
typedef NS_ENUM(NSInteger,EnumLogMode)
{
    // Don't save the log.
    EnumLogModeOff = 0x00,
    // Save the log as text.
    EnumLogModeText = 0x02
};
public enum EnumLogMode : Int{
    // Don't save the log.
    off = 0x00
    // Save the log as text.
    text = 0x02
}

This page is compatible for:

Is this page helpful?

YesYes NoNo