SlipPrintJob.SetBitmap 메서드

정의

오버로드

SetBitmap(UInt32, BitmapFrame, PosPrinterAlignment)

나중에 PrintSavedBitmap 메서드를 사용하여 해당 정보를 인쇄 작업에 추가할 수 있도록 슬립 프린터 스테이션에서 해당 비트맵을 인쇄하는 데 사용할 비트맵 및 표준 가로 배치에 대한 정보를 저장합니다.

SetBitmap(UInt32, BitmapFrame, PosPrinterAlignment, UInt32)

인쇄 프린터 스테이션에서 해당 비트맵을 인쇄하는 데 사용할 너비 및 표준 가로 배치와 함께 비트맵에 대한 정보를 저장하여 나중에 PrintSavedBitmap 메서드를 사용하여 해당 정보를 인쇄 작업에 추가할 수 있습니다.

SetBitmap(UInt32, BitmapFrame, PosPrinterAlignment)

나중에 PrintSavedBitmap 메서드를 사용하여 해당 정보를 인쇄 작업에 추가할 수 있도록 슬립 프린터 스테이션에서 해당 비트맵을 인쇄하는 데 사용할 비트맵 및 표준 가로 배치에 대한 정보를 저장합니다.

public:
 virtual void SetBitmap(unsigned int bitmapNumber, BitmapFrame ^ bitmap, PosPrinterAlignment alignment) = SetBitmap;
/// [Windows.Foundation.Metadata.Overload("SetBitmap")]
void SetBitmap(uint32_t const& bitmapNumber, BitmapFrame const& bitmap, PosPrinterAlignment const& alignment);
[Windows.Foundation.Metadata.Overload("SetBitmap")]
public void SetBitmap(uint bitmapNumber, BitmapFrame bitmap, PosPrinterAlignment alignment);
function setBitmap(bitmapNumber, bitmap, alignment)
Public Sub SetBitmap (bitmapNumber As UInteger, bitmap As BitmapFrame, alignment As PosPrinterAlignment)

매개 변수

bitmapNumber
UInt32

unsigned int

uint32_t

이 비트맵에 할당하려는 숫자입니다. 1과 2로 번호가 매겨진 두 개의 비트맵을 설정할 수 있습니다. 나중에 PrintSavedBitmap 메서드와 함께 이 숫자를 사용하여 인쇄 작업에 인쇄 지침을 추가합니다.

bitmap
BitmapFrame

인쇄하려는 비트맵에 대한 정보입니다.

alignment
PosPrinterAlignment

비트맵에 대한 페이지의 표준 가로 배치(예: 왼쪽 맞춤, 가운데 맞춤 또는 오른쪽 맞춤)를 지정하는 열거형 값입니다.

구현

M:Windows.Devices.PointOfService.IReceiptOrSlipJob.SetBitmap(System.UInt32,Windows.Graphics.Imaging.BitmapFrame,Windows.Devices.PointOfService.PosPrinterAlignment) M:Windows.Devices.PointOfService.IReceiptOrSlipJob.SetBitmap(unsigned int,Windows.Graphics.Imaging.BitmapFrame,Windows.Devices.PointOfService.PosPrinterAlignment) M:Windows.Devices.PointOfService.IReceiptOrSlipJob.SetBitmap(uint32_t,Windows.Graphics.Imaging.BitmapFrame,Windows.Devices.PointOfService.PosPrinterAlignment)
특성

설명

인쇄 작업의 프린터에 비휘발성 비트맵 스토리지가 있는 경우 이 메서드는 비트맵을 프린터 하드웨어에 저장하여 프린터의 플래시 스토리지에 마모 및 손상을 줄 수 있습니다.

추가 정보

적용 대상

SetBitmap(UInt32, BitmapFrame, PosPrinterAlignment, UInt32)

인쇄 프린터 스테이션에서 해당 비트맵을 인쇄하는 데 사용할 너비 및 표준 가로 배치와 함께 비트맵에 대한 정보를 저장하여 나중에 PrintSavedBitmap 메서드를 사용하여 해당 정보를 인쇄 작업에 추가할 수 있습니다.

public:
 virtual void SetBitmap(unsigned int bitmapNumber, BitmapFrame ^ bitmap, PosPrinterAlignment alignment, unsigned int width) = SetBitmap;
/// [Windows.Foundation.Metadata.Overload("SetBitmapCustomWidthStandardAlign")]
void SetBitmap(uint32_t const& bitmapNumber, BitmapFrame const& bitmap, PosPrinterAlignment const& alignment, uint32_t const& width);
[Windows.Foundation.Metadata.Overload("SetBitmapCustomWidthStandardAlign")]
public void SetBitmap(uint bitmapNumber, BitmapFrame bitmap, PosPrinterAlignment alignment, uint width);
function setBitmap(bitmapNumber, bitmap, alignment, width)
Public Sub SetBitmap (bitmapNumber As UInteger, bitmap As BitmapFrame, alignment As PosPrinterAlignment, width As UInteger)

매개 변수

bitmapNumber
UInt32

unsigned int

uint32_t

이 비트맵에 할당하려는 숫자입니다. 1과 2로 번호가 매겨진 두 개의 비트맵을 설정할 수 있습니다. 나중에 PrintSavedBitmap 메서드와 함께 이 숫자를 사용하여 인쇄 작업에 인쇄 지침을 추가합니다.

bitmap
BitmapFrame

인쇄하려는 비트맵에 대한 정보입니다.

alignment
PosPrinterAlignment

비트맵에 대한 페이지의 표준 가로 배치(예: 왼쪽 맞춤, 가운데 맞춤 또는 오른쪽 맞춤)를 지정하는 열거형 값입니다.

width
UInt32

unsigned int

uint32_t

ClaimedPosPrinter.MapMode 속성으로 표시된 측정 단위로 표현된 비트맵 인쇄에 사용할 너비입니다.

구현

M:Windows.Devices.PointOfService.IReceiptOrSlipJob.SetBitmap(System.UInt32,Windows.Graphics.Imaging.BitmapFrame,Windows.Devices.PointOfService.PosPrinterAlignment,System.UInt32) M:Windows.Devices.PointOfService.IReceiptOrSlipJob.SetBitmap(unsigned int,Windows.Graphics.Imaging.BitmapFrame,Windows.Devices.PointOfService.PosPrinterAlignment,unsigned int) M:Windows.Devices.PointOfService.IReceiptOrSlipJob.SetBitmap(uint32_t,Windows.Graphics.Imaging.BitmapFrame,Windows.Devices.PointOfService.PosPrinterAlignment,uint32_t)
특성

설명

인쇄 작업의 프린터에 비휘발성 비트맵 스토리지가 있는 경우 이 메서드는 비트맵을 프린터 하드웨어에 저장하여 프린터의 플래시 스토리지에 마모 및 손상을 줄 수 있습니다.

추가 정보

적용 대상