menu

Xamarin.Android

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

    Show / Hide Table of Contents

    Class GridUnboundCellTextBoxRenderer

    GridUnboundCellTextBoxRenderer is a class for cell renderer that displays the unbound column value in a GridCell. The class provides strong typed override methods for initializing Content of the cell and arranging the cell visuals.

    Updates to appearance and Content of child elements, creation and unloading of views will not trigger layout or render calls in parent canvas.

    Inheritance
    System.Object
    GridCellRendererBase
    GridVirtualizingCellRendererBase<Android.Widget.TextView, Android.Widget.EditText>
    GridVirtualizingCellRenderer<Android.Widget.TextView, Android.Widget.EditText>
    GridUnboundCellTextBoxRenderer
    Implements
    IGridCellRenderer
    System.IDisposable
    Inherited Members
    GridCellRendererBase.BeginEdit(RowColumnIndex, CellElement, GridColumn, Object)
    GridCellRendererBase.ClearRecycleBin()
    GridCellRendererBase.CommitCellValue(Boolean)
    GridCellRendererBase.Context
    GridCellRendererBase.CurrentCellElement
    GridCellRendererBase.CurrentCellIndex
    GridCellRendererBase.CurrentCellRendererElement
    GridCellRendererBase.DataGrid
    GridCellRendererBase.Dispose()
    GridCellRendererBase.Dispose(Boolean)
    GridCellRendererBase.EndEdit(DataColumnBase, Object)
    GridCellRendererBase.GetControlValue()
    GridCellRendererBase.HasCurrentCellState
    GridCellRendererBase.IGridCellRenderer.UpdateColumnInfo(DataColumnBase)
    GridCellRendererBase.IsEditable
    GridCellRendererBase.IsFocusable
    GridCellRendererBase.Layout(RowColumnIndex, View, Int32, Int32, Int32, Int32)
    GridCellRendererBase.Measure(RowColumnIndex, View, Int32, Int32)
    GridCellRendererBase.OnLayout(RowColumnIndex, View, Int32, Int32, Int32, Int32)
    GridCellRendererBase.OnMeasure(RowColumnIndex, View, Int32, Int32)
    GridCellRendererBase.OnPrepareViews(DataColumnBase)
    GridCellRendererBase.OnRefreshDisplayValue(DataColumnBase)
    GridCellRendererBase.OnUnloadViews(DataColumnBase)
    GridCellRendererBase.OnUpdateCellStyle(DataColumnBase)
    GridCellRendererBase.OnUpdateColumnInfo(DataColumnBase)
    GridCellRendererBase.PrepareViews(DataColumnBase)
    GridCellRendererBase.RefreshDisplayValue(DataColumnBase)
    GridCellRendererBase.ResetCurrentCellState()
    GridCellRendererBase.SetControlValue(Object)
    GridCellRendererBase.SetCurrentCellState(RowColumnIndex, CellElement, Boolean)
    GridCellRendererBase.SetFocus(Boolean)
    GridCellRendererBase.SetFocus(View, Boolean)
    GridCellRendererBase.SupportsRenderOptimization
    GridCellRendererBase.UnloadViews(DataColumnBase)
    GridCellRendererBase.UpdateCellStyle(DataColumnBase)
    GridCellRendererBase.UpdateCellValue(DataColumnBase)
    GridCellRendererBase.UpdateColumnInfo(DataColumnBase)
    GridCellRendererBase.UpdateCurrentCellState(View, Boolean)
    GridVirtualizingCellRenderer<TextView, EditText>.OnInitializeDisplayView(DataColumnBase, TextView)
    GridVirtualizingCellRenderer<TextView, EditText>.OnInitializeEditView(DataColumnBase, EditText)
    GridVirtualizingCellRenderer<TextView, EditText>.OnUpdateCellStyle(DataColumnBase)
    GridVirtualizingCellRenderer<TextView, EditText>.OnUpdateDisplayValue(DataColumnBase, TextView)
    GridVirtualizingCellRenderer<TextView, EditText>.UpdateEditViewCellStyle(DataColumnBase, EditText)
    GridVirtualizingCellRendererBase<TextView, EditText>.AllowRecycle
    GridVirtualizingCellRendererBase<TextView, EditText>.BeginEdit(RowColumnIndex, CellElement, GridColumn, Object)
    GridVirtualizingCellRendererBase<TextView, EditText>.ClearRecycleBin()
    GridVirtualizingCellRendererBase<TextView, EditText>.CommitCellValue(Boolean)
    GridVirtualizingCellRendererBase<TextView, EditText>.CreateOrRecycleDisplayUIView()
    GridVirtualizingCellRendererBase<TextView, EditText>.displayRecycleBin
    GridVirtualizingCellRendererBase<TextView, EditText>.Dispose(Boolean)
    GridVirtualizingCellRendererBase<TextView, EditText>.editRecycleBin
    GridVirtualizingCellRendererBase<TextView, EditText>.EndEdit(DataColumnBase, Object)
    GridVirtualizingCellRendererBase<TextView, EditText>.InitializeDisplayView(DataColumnBase, TextView)
    GridVirtualizingCellRendererBase<TextView, EditText>.InitializeEditView(DataColumnBase, EditText)
    GridVirtualizingCellRendererBase<TextView, EditText>.OnCreateDisplayUIView()
    GridVirtualizingCellRendererBase<TextView, EditText>.OnCreateEditUIView()
    GridVirtualizingCellRendererBase<TextView, EditText>.OnEnteredEditMode(DataColumnBase, View)
    GridVirtualizingCellRendererBase<TextView, EditText>.OnLayout(RowColumnIndex, View, Int32, Int32, Int32, Int32)
    GridVirtualizingCellRendererBase<TextView, EditText>.OnMeasure(RowColumnIndex, View, Int32, Int32)
    GridVirtualizingCellRendererBase<TextView, EditText>.OnPrepareViews(DataColumnBase)
    GridVirtualizingCellRendererBase<TextView, EditText>.OnRefreshDisplayValue(DataColumnBase)
    GridVirtualizingCellRendererBase<TextView, EditText>.OnUnloadViews(DataColumnBase)
    GridVirtualizingCellRendererBase<TextView, EditText>.OnUpdateColumnInfo(DataColumnBase)
    GridVirtualizingCellRendererBase<TextView, EditText>.UnwireEditUIElement(EditText)
    GridVirtualizingCellRendererBase<TextView, EditText>.UpdateColumnElement(DataColumnBase)
    GridVirtualizingCellRendererBase<TextView, EditText>.UpdateDisplayValue(DataColumnBase, TextView)
    GridVirtualizingCellRendererBase<TextView, EditText>.WireEditUIElement(EditText)
    Namespace: Syncfusion.SfDataGrid
    Assembly: Syncfusion.SfDataGrid.Android.dll
    Syntax
    public class GridUnboundCellTextBoxRenderer : GridVirtualizingCellRenderer<TextView, EditText>, IGridCellRenderer, IDisposable

    Constructors

    GridUnboundCellTextBoxRenderer()

    Initializes a new instance of the GridUnboundCellTextBoxRenderer class.

    Declaration
    public GridUnboundCellTextBoxRenderer()

    Methods

    CanUpdateBinding(DataColumnBase)

    Determines whether the binding for the column can be updated. Implement this method to update binding on particular renderer when the data context is set.

    Declaration
    public override bool CanUpdateBinding(DataColumnBase dataColumnBase)
    Parameters
    Type Name Description
    Syncfusion.SfDataGrid.DataColumnBase dataColumnBase

    The corresponding column for which the binding update should be determined.

    Returns
    Type Description
    System.Boolean

    True if the binding is updated for the column, otherwise false.

    Overrides
    GridCellRendererBase.CanUpdateBinding(DataColumnBase)

    OnCreateDisplayUIView()

    Creates a new Android.Widget.TextView view and initializes it with the required properties.

    Declaration
    protected override TextView OnCreateDisplayUIView()
    Returns
    Type Description
    Android.Widget.TextView

    A new Android.Widget.TextView view.

    Overrides
    Syncfusion.SfDataGrid.GridVirtualizingCellRendererBase<Android.Widget.TextView, Android.Widget.EditText>.OnCreateDisplayUIView()

    OnInitializeDisplayView(DataColumnBase, TextView)

    Initializes the column element of a Syncfusion.SfDataGrid.DataColumn object with the given Android.Widget.TextView view and required values.

    Declaration
    public override void OnInitializeDisplayView(DataColumnBase dataColumn, TextView view)
    Parameters
    Type Name Description
    Syncfusion.SfDataGrid.DataColumnBase dataColumn

    The dataColumn containing the details of the column.

    Android.Widget.TextView view

    A Android.Widget.TextView view object to be hosted inside the column element.

    Overrides
    Syncfusion.SfDataGrid.GridVirtualizingCellRenderer<Android.Widget.TextView, Android.Widget.EditText>.OnInitializeDisplayView(Syncfusion.SfDataGrid.DataColumnBase, Android.Widget.TextView)

    OnUpdateCellValue(DataColumnBase)

    Updates the cell value of the associated column.

    Declaration
    protected override void OnUpdateCellValue(DataColumnBase dataColumn)
    Parameters
    Type Name Description
    Syncfusion.SfDataGrid.DataColumnBase dataColumn

    The data column.

    Overrides
    GridCellRendererBase.OnUpdateCellValue(DataColumnBase)

    OnUpdateDisplayValue(DataColumnBase, TextView)

    Updates the column element of a Syncfusion.SfDataGrid.DataColumn object with the given Android.Widget.TextView view and required values.

    Declaration
    public override void OnUpdateDisplayValue(DataColumnBase dataColumn, TextView view)
    Parameters
    Type Name Description
    Syncfusion.SfDataGrid.DataColumnBase dataColumn

    The dataColumn containing the details of the column.

    Android.Widget.TextView view

    A Android.Widget.TextView view to be updated inside the column element.

    Overrides
    Syncfusion.SfDataGrid.GridVirtualizingCellRenderer<Android.Widget.TextView, Android.Widget.EditText>.OnUpdateDisplayValue(Syncfusion.SfDataGrid.DataColumnBase, Android.Widget.TextView)

    Implements

    IGridCellRenderer
    System.IDisposable
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved