Interface ITextBoxes
public interface ITextBoxes
Properties
Count
int Count { get; }
Property Value
this[int]
Returns single item from the collection.
ITextBoxLinkShape this[int index] { get; }
Parameters
index
intItem's index to get.
Property Value
- ITextBoxLinkShape
Single item from the collection.
this[string]
ITextBoxLinkShape this[string name] { get; }
Parameters
name
string
Property Value
Methods
AddTextBox(int, int, int, int)
Adds new item to the collection.
ITextBoxLinkShape AddTextBox(int row, int column, int height, int width)
Parameters
row
intOne-based row index of the top-left corner of the new item.
column
intOne-based column index of the top-left corner of the new item.
height
intHeight in pixels of the new item.
width
intWidth in pixels of the new item.
Returns
- ITextBoxLinkShape
Newly added item.