Class AutofillContainer

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

AutofillContainer controls several text input boxes.

C#
Copy
public class AutofillContainer : BaseHandle, IDynamicResourceHandler, IElement, INameScope, IElementController, System.IDisposable
Inheritance
Implements

Constructors

View Source

AutofillContainer(String)

Constructor.

Declaration
C#
Copy
public AutofillContainer(string name)
Parameters
Type Name Description
String name

The AutofillContainer name

Methods

View Source

AddAutofillView(View, Int32, String, String, AutofillContainer.ItemHint, Boolean)

Adds View and its Autofill item information to Autofill Container.

Declaration
C#
Copy
public void AddAutofillView(View view, int propertyIndex, string id, string label, AutofillContainer.ItemHint hint, bool isSensitive)
Parameters
Type Name Description
View view

The view to be added to Autofill Container

Int32 propertyIndex

The Property to be filled automatically of each View

String id

A unique ID that does not always change on each launching

String label

An auxiliary means to guess heuristically what data is

AutofillContainer.ItemHint hint

The Hint - id (username), name, password, phone, credit card number, organization, and so on

Boolean isSensitive

Whether this information is a sensitive data or not

View Source

Dispose(DisposeTypes)

Dispose.

Declaration
C#
Copy
protected override void Dispose(DisposeTypes type)
Parameters
Type Name Description
DisposeTypes type
Overrides
View Source

GetAutofillServiceImagePath()

Gets the Autofill Service Image Path.

Declaration
C#
Copy
public string GetAutofillServiceImagePath()
Returns
Type Description
String

Autofill Service Image Path

View Source

GetAutofillServiceMessage()

Gets the Autofill Service Message.

Declaration
C#
Copy
public string GetAutofillServiceMessage()
Returns
Type Description
String

Autofill Service Message

View Source

GetAutofillServiceName()

Gets the Autofill Service Name.

Declaration
C#
Copy
public string GetAutofillServiceName()
Returns
Type Description
String

Autofill Service Name

View Source

GetListItem(UInt32)

Gets the list item of the index.

Declaration
C#
Copy
public string GetListItem(uint index)
Parameters
Type Name Description
UInt32 index

The index for the list

Returns
Type Description
String

The list item of the index

View Source

GetListItemCount()

Gets the number of list items. (The presentation text of Autofill)

Declaration
C#
Copy
public uint GetListItemCount()
Returns
Type Description
UInt32

The number of list items

View Source

ReleaseSwigCPtr(Runtime.InteropServices.HandleRef)

Declaration
C#
Copy
protected override void ReleaseSwigCPtr(Runtime.InteropServices.HandleRef swigCPtr)
Parameters
Type Name Description
Tizen.System.Runtime.InteropServices.HandleRef swigCPtr
Overrides
View Source

RemoveAutofillItem(View)

Removes View and its AutofillItem information to Autofill Container.

Declaration
C#
Copy
public void RemoveAutofillItem(View view)
Parameters
Type Name Description
View view

The view to be removed to Autofill Container

View Source

RequestFillData()

Sends a request for filling the data.

Declaration
C#
Copy
public void RequestFillData()
View Source

SaveAutofillData()

Stores autofill data.

Declaration
C#
Copy
public void SaveAutofillData()
View Source

SetSelectedItem(String)

Sets the selected item to fill out.

Declaration
C#
Copy
public void SetSelectedItem(string selected)
Parameters
Type Name Description
String selected

The selected item

API Level: 5

Events

View Source

ListEvent

AutofillContainer Fill List Event.

Declaration
C#
Copy
public event EventHandler<AutofillContainer.ListEventArgs> ListEvent
Event Type
Type Description
EventHandler<AutofillContainer.ListEventArgs>
View Source

ServiceEvent

AutofillContainer Authentication Service Event.

Declaration
C#
Copy
public event EventHandler<AutofillContainer.AuthenticationEventArgs> ServiceEvent
Event Type
Type Description
EventHandler<AutofillContainer.AuthenticationEventArgs>

Implements

Extension Methods