using System;
namespace iTextSharp.text {
///
/// Interface for a text element to which other objects can be added.
///
///
///
///
///
///
///
///
public interface ITextElementArray : IElement {
///
/// Adds an object to the TextElementArray.
///
/// an object that has to be added
/// true if the addition succeeded; false otherwise
bool Add(Object o);
}
}