![]() |
Solid Framework SDK 10.0.12602
SDK for converting and extracting value from PDFs
|
Classes | |
| class | ImagesCollectionEnumerator |
Public Member Functions | |
| virtual void | Dispose () |
| ImagesCollection (global::System.Collections.ICollection c) | |
| void | CopyTo (SolidFramework.Imaging.Image[] array) |
| Copies all the elements of the dictionary to the specified one-dimensional array starting at the beginning. | |
| void | CopyTo (SolidFramework.Imaging.Image[] array, int arrayIndex) |
| Copies all the elements of the dictionary to the specified one-dimensional array starting at the specified destination array index. | |
| void | CopyTo (int index, SolidFramework.Imaging.Image[] array, int arrayIndex, int count) |
| Copies count countitems from the collection starting at index index to the specified one-dimensional array starting at specified destination arrayIndex index. More... | |
| ImagesCollectionEnumerator | GetEnumerator () |
| Returns an ImagesCollectionEnumerator for the collection. More... | |
| void | Clear () |
| void | Add (SolidFramework.Imaging.Image x) |
| ImagesCollection (ImagesCollection other) | |
| ImagesCollection (int capacity) | |
| void | AddRange (ImagesCollection values) |
| ImagesCollection | GetRange (int index, int count) |
| void | Insert (int index, SolidFramework.Imaging.Image x) |
| void | InsertRange (int index, ImagesCollection values) |
| void | RemoveAt (int index) |
| void | RemoveRange (int index, int count) |
| void | Reverse () |
| void | Reverse (int index, int count) |
| void | SetRange (int index, ImagesCollection values) |
| bool | Contains (SolidFramework.Imaging.Image value) |
| int | IndexOf (SolidFramework.Imaging.Image value) |
| int | LastIndexOf (SolidFramework.Imaging.Image value) |
| bool | Remove (SolidFramework.Imaging.Image value) |
Static Public Member Functions | |
| static implicit | operator ImagesCollection (SolidFramework.Imaging.Image[] inVal) |
| static implicit | operator SolidFramework.Imaging.Image[] (ImagesCollection inVal) |
| static implicit | operator ImagesCollection (global::System.Collections.Generic.List< SolidFramework.Imaging.Image > inVal) |
| static implicit | operator global::System.Collections.Generic.List< SolidFramework.Imaging.Image > (ImagesCollection inVal) |
| static ImagesCollection | Repeat (SolidFramework.Imaging.Image value, int count) |
Properties | |
| bool | IsFixedSize [get] |
| Gets whether the collection is a fixed size. This method always returns false. | |
| bool | IsReadOnly [get] |
| Gets whether the collection is readonly. This method always returns false. | |
| SolidFramework.Imaging.Image | this[int index] [getset] |
| Gets the SolidFramework.Imaging.Image at the specified index in the collection. More... | |
| int | Capacity [getset] |
| Gets or sets the maximum number of items that can be stored in the collection. If the value is set to a number less than the current size of the colelction then an exception will be thrown. More... | |
| int | Count [get] |
| Gets the number of items in the collection. | |
| bool | IsSynchronized [get] |
| Gets a value indicating whether access to the ICollection is synchronized (thread safe). This always returns false. | |
| void SolidFramework.Imaging.ImagesCollection.CopyTo | ( | int | index, |
| SolidFramework.Imaging.Image[] | array, | ||
| int | arrayIndex, | ||
| int | count | ||
| ) |
Copies count countitems from the collection starting at index index to the specified one-dimensional array starting at specified destination arrayIndex index.
| index | Index of the first item in this collection that should be copied. |
| array | A one-dimensional array into which the items should be copied. |
| arrayIndex | Index of the destination array to where the first item should be copied. |
| count | Number of items to be copied. |
| ImagesCollectionEnumerator SolidFramework.Imaging.ImagesCollection.GetEnumerator | ( | ) |
Returns an ImagesCollectionEnumerator for the collection.
|
getset |
Gets or sets the maximum number of items that can be stored in the collection. If the value is set to a number less than the current size of the colelction then an exception will be thrown.
| System.ArgumentOutOfRangeException | Occurs if the capacity is set to a number less than the current size. |
|
getset |
Gets the SolidFramework.Imaging.Image at the specified index in the collection.
| index | The index of the item to be returned. |