Struct HiddenInput
Definition
- Assembly:
- Tizen.NUI.dll
A struct to pass data of HiddenInputSettings PropertyMap.
public struct HiddenInput : IEquatable<HiddenInput>
- Implements
-
IEquatable<><HiddenInput>
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
Properties
View SourceMode
The mode for input text display.
Declaration
public HiddenInputModeType Mode { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| HiddenInputModeType |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
ShowLastCharacterDuration
Hide last character after this duration, available when ShowLastCharacter mode (if null, the default value is 1000).
Declaration
public int? ShowLastCharacterDuration { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
SubstituteCharacter
All input characters are substituted by this character (if null, the default value is '*').
Declaration
public char? SubstituteCharacter { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| char? |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
SubstituteCount
Length of text to show or hide, available when HideCount/ShowCount mode is used (if null, the default value is 0).
Declaration
public int? SubstituteCount { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
Methods
View SourceEquals(object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | The object to compare with the current object. |
Returns
| Type | Description |
|---|---|
| bool | true if equal HiddenInput, else false. |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
Equals(HiddenInput)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(HiddenInput other)
Parameters
| Type | Name | Description |
|---|---|---|
| HiddenInput | other | The HiddenInput to compare with the current HiddenInput. |
Returns
| Type | Description |
|---|---|
| bool | true if equal HiddenInput, else false. |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
GetHashCode()
Gets the hash code of this HiddenInput.
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int | The hash code. |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
Operators
View Sourceoperator ==(HiddenInput, HiddenInput)
The == operator.
Declaration
public static bool operator ==(HiddenInput lhsHiddenInput, HiddenInput rhsHiddenInput)
Parameters
| Type | Name | Description |
|---|---|---|
| HiddenInput | lhsHiddenInput | HiddenInput to compare |
| HiddenInput | rhsHiddenInput | HiddenInput to be compared |
Returns
| Type | Description |
|---|---|
| bool | true if HiddenInputs are equal |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().
operator !=(HiddenInput, HiddenInput)
The != operator.
Declaration
public static bool operator !=(HiddenInput lhsHiddenInput, HiddenInput rhsHiddenInput)
Parameters
| Type | Name | Description |
|---|---|---|
| HiddenInput | lhsHiddenInput | HiddenInput to compare |
| HiddenInput | rhsHiddenInput | HiddenInput to be compared |
Returns
| Type | Description |
|---|---|
| bool | true if HiddenInputs are not equal |
Remarks
The HiddenInput struct is used as an argument to SetHiddenInput and GetHiddenInput methods.
See SetHiddenInput(HiddenInput) and GetHiddenInput().