Struct HiddenInput
Definition
- Namespace:
- Tizen.NUI.Text
- Assembly:
- Tizen.NUI.dll
A struct to pass data of HiddenInputSettings PropertyMap.
C#Copypublic 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
Declaration
C#Copypublic HiddenInputModeType Mode { get; set; }
Property Value
Type | Description |
---|---|
HiddenInputModeType |
ShowLastCharacterDuration
Hide last character after this duration, available when ShowLastCharacter mode (if null, the default value is 1000).
Declaration
C#Copypublic int? ShowLastCharacterDuration { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
SubstituteCharacter
All input characters are substituted by this character (if null, the default value is '*').
Declaration
C#Copypublic char? SubstituteCharacter { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Char> |
SubstituteCount
Length of text to show or hide, available when HideCount/ShowCount mode is used (if null, the default value is 0).
Declaration
C#Copypublic int? SubstituteCount { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Methods
Declaration
C#Copypublic override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
Boolean | true if equal HiddenInput, else false. |
Equals(HiddenInput)
Determines whether the specified object is equal to the current object.
Declaration
C#Copypublic bool Equals(HiddenInput other)
Parameters
Type | Name | Description |
---|---|---|
HiddenInput | other | The HiddenInput to compare with the current HiddenInput. |
Returns
Type | Description |
---|---|
Boolean | true if equal HiddenInput, else false. |
Declaration
C#Copypublic override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | The hash code. |
Operators
Declaration
C#Copypublic 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 |
---|---|
Boolean | true if HiddenInputs are equal |
Declaration
C#Copypublic 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 |
---|---|
Boolean | true if HiddenInputs are not equal |