iText 5

ByteArray

ByteArray Public class

Diagram

flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph iTextSharp.text.pdf.qrcode iTextSharp.text.pdf.qrcode.ByteArray[[ByteArray]] end

Members

Methods

Public methods

Returns

Name

void

AppendByte

(int value)

int

At

(int index)

bool

IsEmpty

()

void

Reserve

(int capacity)

void

Set

(...)

int

Size

()

Details

Constructors

ByteArray [1/3]

Source code

public ByteArray()

ByteArray [2/3]

Source code

public ByteArray(int size)

Arguments

Type

Name

Description

int

size

ByteArray [3/3]

Source code

public ByteArray(byte[] byteArray)

Arguments

Type

Name

Description

byte``[]

byteArray

Methods

At

Source code

public int At(int index)

Arguments

Type

Name

Description

int

index

Set [1/2]

Source code

public void Set(int index, int value)

Arguments

Type

Name

Description

int

index

int

value

Size

Source code

public int Size()

IsEmpty

Source code

public bool IsEmpty()

AppendByte

Source code

public void AppendByte(int value)

Arguments

Type

Name

Description

int

value

Reserve

Source code

public void Reserve(int capacity)

Arguments

Type

Name

Description

int

capacity

Set [2/2]

Source code

public void Set(byte[] source, int offset, int count)

Arguments

Type

Name

Description

byte``[]

source

int

offset

int

count

Generated with ModularDoc