ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / ChoiceField Class / Options Property




In This Topic
    Options Property
    In This Topic
    Gets a read-only list of options for the choice field.
    Syntax
    'Declaration
     
    Public ReadOnly Property Options As IList(Of ChoiceOption)
    'Usage
     
    Dim instance As ChoiceField
    Dim value As IList(Of ChoiceOption)
     
    value = instance.Options
    public IList<ChoiceOption> Options {get;}
    public: __property IList<ChoiceOption*>* get_Options();
    public:
    property IList<ChoiceOption^>^ Options {
       IList<ChoiceOption^>^ get();
    }

    Property Value

    The list of options in the field.
    Remarks

    The returned object will update as options are modified in the field it was queried from. For example, Count will update if an option is added to the field.

    -

    The returned object does not implement the following properties:

    System.Collections.IList.IndexOf(System.Object)

    System.Collections.IList.Contains(System.Object)

    See Also