Struct HiddenInput

Definition

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

A struct to pass data of HiddenInputSettings PropertyMap.

C#
Copy
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 Source

Mode

The mode for input text display.

Declaration
C#
Copy
public HiddenInputModeType Mode { get; set; }
Property Value
Type Description
HiddenInputModeType
View Source

ShowLastCharacterDuration

Hide last character after this duration, available when ShowLastCharacter mode (if null, the default value is 1000).

Declaration
C#
Copy
public int? ShowLastCharacterDuration { get; set; }
Property Value
Type Description
Nullable<Int32>
View Source

SubstituteCharacter

All input characters are substituted by this character (if null, the default value is '*').

Declaration
C#
Copy
public char? SubstituteCharacter { get; set; }
Property Value
Type Description
Nullable<Char>
View Source

SubstituteCount

Length of text to show or hide, available when HideCount/ShowCount mode is used (if null, the default value is 0).

Declaration
C#
Copy
public int? SubstituteCount { get; set; }
Property Value
Type Description
Nullable<Int32>

Methods

View Source

Equals(Object)

Determines whether the specified object is equal to the current object.

Declaration
C#
Copy
public 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.

View Source

Equals(HiddenInput)

Determines whether the specified object is equal to the current object.

Declaration
C#
Copy
public 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.

View Source

GetHashCode()

Gets the hash code of this HiddenInput.

Declaration
C#
Copy
public override int GetHashCode()
Returns
Type Description
Int32

The hash code.

Operators

View Source

Equality(HiddenInput, HiddenInput)

The == operator.

Declaration
C#
Copy
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
Boolean

true if HiddenInputs are equal

View Source

Inequality(HiddenInput, HiddenInput)

The != operator.

Declaration
C#
Copy
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
Boolean

true if HiddenInputs are not equal

Implements

IEquatable<>

Extension Methods