XImageCollection.Delete

Delete(int)

Removes index from collection by index.

public void Delete(int index)
ParameterTypeDescription
indexInt32Image index.

See Also


Delete(int, ImageDeleteAction)

Removes image from collection by index performing action specified by action parameter.

public void Delete(int index, ImageDeleteAction action)
ParameterTypeDescription
indexInt32Index of the image to be removed.
actionImageDeleteActionAction perfromed after image deleting.

See Also


Delete(string)

Removes item from collection by name.

public void Delete(string name)
ParameterTypeDescription
nameStringName of image which must to be deleted.

See Also


Delete(string, ImageDeleteAction)

Removes item from collection by name.

public void Delete(string name, ImageDeleteAction action)
ParameterTypeDescription
nameStringName of image which must to be deleted.
actionImageDeleteActionAction to be performed with image object.

See Also


Delete()

Deletes images from collection.

public void Delete()

See Also