iTextSharp.text.pdf.BarcodePDF417.SegmentList.Add C# (CSharp) Method

Add() public method

public Add ( char type, int start, int end ) : void
type char
start int
end int
return void
            public void Add(char type, int start, int end) {
                list.Add(new Segment(type, start, end));
            }
BarcodePDF417.SegmentList