Table of Contents

Interface ITextBoxes

Namespace
Spire.Xls.Core
Assembly
Spire.XLS.dll
public interface ITextBoxes

Properties

Count

int Count { get; }

Property Value

int

this[int]

Returns single item from the collection.

ITextBoxLinkShape this[int index] { get; }

Parameters

index int

Item's index to get.

Property Value

ITextBoxLinkShape

Single item from the collection.

this[string]

ITextBoxLinkShape this[string name] { get; }

Parameters

name string

Property Value

ITextBoxLinkShape

Methods

AddTextBox(int, int, int, int)

Adds new item to the collection.

ITextBoxLinkShape AddTextBox(int row, int column, int height, int width)

Parameters

row int

One-based row index of the top-left corner of the new item.

column int

One-based column index of the top-left corner of the new item.

height int

Height in pixels of the new item.

width int

Width in pixels of the new item.

Returns

ITextBoxLinkShape

Newly added item.