Accusoft.PdfXpressSdk Namespace > QuadrilateralCollection Class : Item Property |
'Declaration Public Default Property Item( _ ByVal index As Object _ ) As Quadrilateral
'Usage Dim instance As QuadrilateralCollection Dim index As Object Dim value As Quadrilateral instance.Item(index) = value value = instance.Item(index)
public Quadrilateral this[ object index ]; {get; set;}
public: __property Quadrilateral* get_Item Object* index ; public: __property void set_Item Object* index, Quadrilateral* value ;
public: property Quadrilateral^ default [Object^] { Quadrilateral^ get(Object^ index); void set (Object^ index, Quadrilateral^ value); }
This method implements a standard collection operation. It is the principle method you will use to read or change elements in the collection. You can read or modify any element in the collection with this method.
You can indicate the element you are interested in with an integer, in which case this method will treat it as a zero-based index to the element.