11 lines
363 B
C#
11 lines
363 B
C#
namespace ESCPOS_NET.Emitters.BaseCommandValues
|
|
{
|
|
public static class Functions
|
|
{
|
|
public static readonly byte PaperCutFullCut = 0x00;
|
|
public static readonly byte PaperCutFullCutWithFeed = 0x41;
|
|
public static readonly byte PaperCutPartialCut = 0x01;
|
|
public static readonly byte PaperCutPartialCutWithFeed = 0x42;
|
|
}
|
|
}
|