Table of Contents

Class PdfLoadedListFieldItem

Namespace
Syncfusion.Pdf.Parsing
Assembly
Syncfusion.Pdf.Portable.dll

Represents group item for list field.

public class PdfLoadedListFieldItem : PdfLoadedFieldItem
Inheritance
PdfLoadedListFieldItem
Inherited Members

Examples

// Loads an existing document
PdfLoadedDocument doc = new PdfLoadedDocument("SourceForm.pdf");
// Load the list box field 
PdfLoadedListBoxField listField = doc.Form.Fields["Course"] as PdfLoadedListBoxField;
// Loaded list box field items
PdfLoadedListFieldItem listFieldItem = listField.Items[0];
listFieldItem.Location = new PointF(100, 200);
doc.Save("Sample.pdf");
doc.Close(true);
' Loads an existing document
Dim doc As PdfLoadedDocument = New PdfLoadedDocument("SourceForm.pdf")
' Load the list box field 
Dim listField As PdfLoadedListBoxField = TryCast(doc.Form.Fields("Course"), PdfLoadedListBoxField)
' Loaded list box field items
Dim listFieldItem As PdfLoadedListFieldItem = listField.Items(0)
listFieldItem.Location = New PointF(100, 200)
doc.Save("Sample.pdf")
doc.Close(True)

See Also