IScene3DTextureManager.Delete

Syntax

Delete(Index: Integer);

Parameters

Index - texture index.

Description

The Delete method deletes a texture from the list by the specified index.

Example

This example assumes that there is the S object of the IScene3D type.

Sub Chart3D;
Var
    s : IScene3D;
Begin
    s.DisplayedObjects.TextureManager.Delete(0);
End Sub Chart3D;

After executing the example the texture with the 0 index is deleted.

See also:

IScene3DTextureManager