iText 5

BitArray

BitArray 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.BitArray[[BitArray]] end

Members

Methods

Public methods

Returns

Name

void

Clear

()

void

Flip

(int i)

bool

Get

(int i)

int``[]

GetBitArray

()

int

GetSize

()

bool

IsRange

(int start, int end, bool value)

void

Reverse

()

void

Set

(int i)

void

SetBulk

(int i, int newBits)

string

ToString

()

Details

Constructors

BitArray

Source code

public BitArray(int size)

Arguments

Type

Name

Description

int

size

Methods

GetSize

Source code

public int GetSize()

Get

Source code

public bool Get(int i)

Arguments

Type

Name

Description

int

i

Set

Source code

public void Set(int i)

Arguments

Type

Name

Description

int

i

Flip

Source code

public void Flip(int i)

Arguments

Type

Name

Description

int

i

SetBulk

Source code

public void SetBulk(int i, int newBits)

Arguments

Type

Name

Description

int

i

int

newBits

Clear

Source code

public void Clear()

IsRange

Source code

public bool IsRange(int start, int end, bool value)

Arguments

Type

Name

Description

int

start

int

end

bool

value

GetBitArray

Source code

public int GetBitArray()

Reverse

Source code

public void Reverse()

ToString

Source code

public override string ToString()

Generated with ModularDoc