Gets a particular image, text frame, chart, barcode or drawing from the collection.

GetItem()

public FrameBase GetItem();
Public Function GetItem() As FrameBase

GetItem(Int)

public FrameBase GetItem(int id);
Public Function GetItem(ByVal id As Integer) As FrameBase

GetItem(String)

public FrameBase GetItem(string name);
Public Function GetItem(ByVal name As String) As FrameBase

Parameters

Parameter Description
id Specifies the frame's identifier. The method returns null if a frame with the specified identifier does not exist.
name Specifies the frame's name. The method returns null if a frame with the specified name does not exist.

Return Value

The return value is null, if an object with the specified parameters could not be found. Otherwise, it is an object of the type Image, TextFrame, ChartFrame or BarcodeFrame.