operator [] method
Gets the Field item at the specified index.
Implementation
PdfFieldItem operator [](int index) {
if (index < 0 || index >= count) {
throw RangeError('index');
}
return _helper.list[index] as PdfFieldItem;
}
Gets the Field item at the specified index.
PdfFieldItem operator [](int index) {
if (index < 0 || index >= count) {
throw RangeError('index');
}
return _helper.list[index] as PdfFieldItem;
}