iTextSharp.text.pdf.hyphenation.ByteVector.this C# (CSharp) Method

this() public method

public this ( int index ) : byte
index int
return byte
		public byte this[int index] {
			get {
				return arr[index];
			}

			set {
				arr[index] = value;
			}
		}