menu

Xamarin.Android

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class TextBoxCollection - Xamarin.Android API Reference | Syncfusion

    Show / Hide Table of Contents

    Class TextBoxCollection

    Represents worksheet's textbox collection.

    Inheritance
    System.Object
    CollectionBase<ITextBoxShape>
    CollectionBaseEx<ITextBoxShape>
    TextBoxCollection
    Implements
    System.Collections.Generic.IList<ITextBoxShape>
    System.Collections.Generic.ICollection<ITextBoxShape>
    System.Collections.Generic.IEnumerable<ITextBoxShape>
    System.Collections.IEnumerable
    IParentApplication
    ICloneParent
    ITextBoxes
    Inherited Members
    CollectionBase<ITextBoxShape>.Add(ITextBoxShape)
    CollectionBase<ITextBoxShape>.Capacity
    CollectionBase<ITextBoxShape>.Clear()
    CollectionBase<ITextBoxShape>.Contains(ITextBoxShape)
    CollectionBase<ITextBoxShape>.CopyTo(ITextBoxShape[], Int32)
    CollectionBase<ITextBoxShape>.Count
    CollectionBase<ITextBoxShape>.GetEnumerator()
    CollectionBase<ITextBoxShape>.IndexOf(ITextBoxShape)
    CollectionBase<ITextBoxShape>.InnerList
    CollectionBase<ITextBoxShape>.Insert(Int32, ITextBoxShape)
    CollectionBase<ITextBoxShape>.IsReadOnly
    CollectionBase<ITextBoxShape>.List
    CollectionBase<ITextBoxShape>.Remove(ITextBoxShape)
    CollectionBase<ITextBoxShape>.RemoveAt(Int32)
    CollectionBaseEx<ITextBoxShape>.add_Cleared(CollectionBaseEx.CollectionClear<>)
    CollectionBaseEx<ITextBoxShape>.add_Clearing(CollectionBaseEx.CollectionClear<>)
    CollectionBaseEx<ITextBoxShape>.add_Inserted(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.add_Inserting(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.add_Removed(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.add_Removing(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.add_Set(CollectionBaseEx.CollectionSet<>)
    CollectionBaseEx<ITextBoxShape>.add_Setting(CollectionBaseEx.CollectionSet<>)
    CollectionBaseEx<ITextBoxShape>.AppImplementation
    CollectionBaseEx<ITextBoxShape>.Application
    CollectionBaseEx<ITextBoxShape>.Changed
    CollectionBaseEx<ITextBoxShape>.ChangeName(IDictionary, ValueChangedEventArgs)
    CollectionBaseEx<ITextBoxShape>.Cleared
    CollectionBaseEx<ITextBoxShape>.Clearing
    CollectionBaseEx<ITextBoxShape>.ClearMaxValues()
    CollectionBaseEx<ITextBoxShape>.Clone(Object)
    CollectionBaseEx<ITextBoxShape>.EnsureCapacity(Int32)
    CollectionBaseEx<ITextBoxShape>.FindParent(Type)
    CollectionBaseEx<ITextBoxShape>.FindParent(Type, Boolean)
    CollectionBaseEx<ITextBoxShape>.GenerateDefaultName(ICollection<ITextBoxShape>, String)
    CollectionBaseEx<ITextBoxShape>.GenerateDefaultName(ICollection, String)
    CollectionBaseEx<ITextBoxShape>.GenerateDefaultName(String, ICollection[])
    CollectionBaseEx<ITextBoxShape>.Inserted
    CollectionBaseEx<ITextBoxShape>.Inserting
    CollectionBaseEx<ITextBoxShape>.OnClear()
    CollectionBaseEx<ITextBoxShape>.OnClearComplete()
    CollectionBaseEx<ITextBoxShape>.OnInsert(Int32, ITextBoxShape)
    CollectionBaseEx<ITextBoxShape>.OnInsertComplete(Int32, ITextBoxShape)
    CollectionBaseEx<ITextBoxShape>.OnRemove(Int32, ITextBoxShape)
    CollectionBaseEx<ITextBoxShape>.OnRemoveComplete(Int32, ITextBoxShape)
    CollectionBaseEx<ITextBoxShape>.OnSet(Int32, ITextBoxShape, ITextBoxShape)
    CollectionBaseEx<ITextBoxShape>.OnSetComplete(Int32, ITextBoxShape, ITextBoxShape)
    CollectionBaseEx<ITextBoxShape>.Parent
    CollectionBaseEx<ITextBoxShape>.QuietMode
    CollectionBaseEx<ITextBoxShape>.remove_Cleared(CollectionBaseEx.CollectionClear<>)
    CollectionBaseEx<ITextBoxShape>.remove_Clearing(CollectionBaseEx.CollectionClear<>)
    CollectionBaseEx<ITextBoxShape>.remove_Inserted(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.remove_Inserting(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.remove_Removed(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.remove_Removing(CollectionBaseEx.CollectionChange<>)
    CollectionBaseEx<ITextBoxShape>.remove_Set(CollectionBaseEx.CollectionSet<>)
    CollectionBaseEx<ITextBoxShape>.remove_Setting(CollectionBaseEx.CollectionSet<>)
    CollectionBaseEx<ITextBoxShape>.Removed
    CollectionBaseEx<ITextBoxShape>.Removing
    CollectionBaseEx<ITextBoxShape>.Set
    CollectionBaseEx<ITextBoxShape>.SetParent(Object)
    CollectionBaseEx<ITextBoxShape>.Setting
    Namespace: Syncfusion.XlsIO.Implementation.Collections
    Assembly: Syncfusion.XlsIO.Portable.dll
    Syntax
    public class TextBoxCollection : CollectionBaseEx<ITextBoxShape>, IList<ITextBoxShape>, ICollection<ITextBoxShape>, IEnumerable<ITextBoxShape>, IEnumerable, IParentApplication, ICloneParent, ITextBoxes

    Constructors

    TextBoxCollection(IApplication, Object)

    Initializes new instance of the collection.

    Declaration
    public TextBoxCollection(IApplication application, object parent)
    Parameters
    Type Name Description
    IApplication application

    Application object for the new instance.

    System.Object parent

    Parent object for the new instance.

    Properties

    Item[Int32]

    Returns single item from the collection.

    Declaration
    public ITextBoxShape this[int index] { get; }
    Parameters
    Type Name Description
    System.Int32 index

    Index of the item to get.

    Property Value
    Type Description
    ITextBoxShape

    Single item from the collection.

    Item[String]

    Gets single item from the collection.

    Declaration
    public ITextBoxShape this[string name] { get; }
    Parameters
    Type Name Description
    System.String name

    Name of the item to get.

    Property Value
    Type Description
    ITextBoxShape

    Single item from the collection.

    Methods

    AddTextBox(ITextBoxShape)

    Adds new item to the collection.

    Declaration
    public void AddTextBox(ITextBoxShape textbox)
    Parameters
    Type Name Description
    ITextBoxShape textbox

    Textbox to add.

    AddTextBox(Int32, Int32, Int32, Int32)

    Adds new textbox to the collection.

    Declaration
    public ITextBoxShape AddTextBox(int row, int column, int height, int width)
    Parameters
    Type Name Description
    System.Int32 row

    Top row for the new shape.

    System.Int32 column

    Left column for the new shape.

    System.Int32 height

    Height in pixels of the new shape.

    System.Int32 width

    Width in pixels of the new shape.

    Returns
    Type Description
    ITextBoxShape

    Newly created TextBox object.

    Implements

    System.Collections.Generic.IList<>
    System.Collections.Generic.ICollection<>
    System.Collections.Generic.IEnumerable<>
    System.Collections.IEnumerable
    IParentApplication
    ICloneParent
    ITextBoxes
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved