iTextSharp.text.pdf.BarcodePDF417.Segment.Segment C# (CSharp) 메소드

Segment() 공개 메소드

public Segment ( char type, int start, int end ) : System
type char
start int
end int
리턴 System
            public Segment(char type, int start, int end) {
                this.type = type;
                this.start = start;
                this.end = end;
            }
        }
BarcodePDF417.Segment