Class RadEntry
Represents a custom Telerik.XamarinForms.Input.Entry implementation that may be used to restrict user input.
Inherited Members
Namespace: Telerik.XamarinForms.Input
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public class RadEntry : RadView, INotifyNativeControlLoaded
Constructors
RadEntry()
Declaration
public RadEntry()
Fields
BorderStyleProperty
Identifies the BorderStyle property.
Declaration
public static readonly BindableProperty BorderStyleProperty
Field Value
Xamarin.Forms.BindableProperty
|
CompletedCommandProperty
Identifies the CompletedCommand property.
Declaration
public static BindableProperty CompletedCommandProperty
Field Value
Xamarin.Forms.BindableProperty
|
CursorPositionProperty
Identifies the CursorPosition property.
Declaration
public static readonly BindableProperty CursorPositionProperty
Field Value
Xamarin.Forms.BindableProperty
|
FocusMediatorProperty
Declaration
public static BindableProperty FocusMediatorProperty
Field Value
Xamarin.Forms.BindableProperty
|
FontAttributesProperty
Identifies the FontAttributes property.
Declaration
public static readonly BindableProperty FontAttributesProperty
Field Value
Xamarin.Forms.BindableProperty
|
FontFamilyProperty
Identifies the FontFamily property.
Declaration
public static readonly BindableProperty FontFamilyProperty
Field Value
Xamarin.Forms.BindableProperty
|
FontSizeProperty
Identifies the FontSize property.
Declaration
public static readonly BindableProperty FontSizeProperty
Field Value
Xamarin.Forms.BindableProperty
|
HorizontalTextAlignmentProperty
Identifies the HorizontalTextAlignment property.
Declaration
public static readonly BindableProperty HorizontalTextAlignmentProperty
Field Value
Xamarin.Forms.BindableProperty
|
IsPasswordProperty
Identifies the IsPassword property.
Declaration
public static readonly BindableProperty IsPasswordProperty
Field Value
Xamarin.Forms.BindableProperty
|
IsReadOnlyProperty
Identifies the IsReadOnly property.
Declaration
public static readonly BindableProperty IsReadOnlyProperty
Field Value
Xamarin.Forms.BindableProperty
|
KeyboardProperty
Identifies the Keyboard property.
Declaration
public static readonly BindableProperty KeyboardProperty
Field Value
Xamarin.Forms.BindableProperty
|
MaxLengthProperty
Identifies the MaxLength property.
Declaration
public static readonly BindableProperty MaxLengthProperty
Field Value
Xamarin.Forms.BindableProperty
|
PaddingProperty
Identifies the Padding property.
Declaration
public static readonly BindableProperty PaddingProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectionLengthProperty
Identifies the SelectionLength property.
Declaration
public static readonly BindableProperty SelectionLengthProperty
Field Value
Xamarin.Forms.BindableProperty
|
TextColorProperty
Identifies the TextColor property.
Declaration
public static readonly BindableProperty TextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
TextProperty
Identifies the Text property.
Declaration
public static readonly BindableProperty TextProperty
Field Value
Xamarin.Forms.BindableProperty
|
VerticalTextAlignmentProperty
Identifies the VerticalTextAlignment property.
Declaration
public static readonly BindableProperty VerticalTextAlignmentProperty
Field Value
Xamarin.Forms.BindableProperty
|
WatermarkTextColorProperty
Identifies the WatermarkTextColor property.
Declaration
public static readonly BindableProperty WatermarkTextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
WatermarkTextProperty
Identifies the WatermarkText property.
Declaration
public static readonly BindableProperty WatermarkTextProperty
Field Value
Xamarin.Forms.BindableProperty
|
Properties
BorderStyle
Gets or sets a BorderStyle defining the look of the border around the entry. The default value is defined by the OS.
Declaration
public BorderStyle BorderStyle { get; set; }
Property Value
BorderStyle
|
CompletedCommand
Gets or sets the CompletedCommand property.
Declaration
public ICommand CompletedCommand { get; set; }
Property Value
System.Windows.Input.ICommand
|
CursorPosition
Gets or sets the starting position of the text selected in the entry.
Declaration
public int CursorPosition { get; set; }
Property Value
System.Int32
|
FocusMediator
FontAttributes
Gets or sets values that describe font styles.
Declaration
public FontAttributes FontAttributes { get; set; }
Property Value
Xamarin.Forms.FontAttributes
|
FontFamily
Gets or sets the font family to which the font belongs.
Declaration
public string FontFamily { get; set; }
Property Value
System.String
|
FontSize
Gets or sets size of the font.
Declaration
public double FontSize { get; set; }
Property Value
System.Double
|
HorizontalTextAlignment
Gets or sets the horizontal alignment of the Text.
Declaration
public TextAlignment HorizontalTextAlignment { get; set; }
Property Value
Xamarin.Forms.TextAlignment
|
IsPassword
Gets or sets a value indicating is the input behaves as password box.
Declaration
public bool IsPassword { get; set; }
Property Value
System.Boolean
|
IsReadOnly
Gets or sets a value indicating wheather the control can be edited.
Declaration
public bool IsReadOnly { get; set; }
Property Value
System.Boolean
|
Keyboard
Gets or sets type of the keyboard that will be visualized by the device.
Declaration
public Keyboard Keyboard { get; set; }
Property Value
Xamarin.Forms.Keyboard
|
MaxLength
Gets or sets the maximum number of symbols allowed to be entered.
Declaration
public int MaxLength { get; set; }
Property Value
System.Int32
|
Padding
Gets or sets the Padding of the text.
Declaration
public Thickness Padding { get; set; }
Property Value
Xamarin.Forms.Thickness
|
SelectionLength
Gets or sets the number of characters in the current selection in the entry.
Declaration
public int SelectionLength { get; set; }
Property Value
System.Int32
|
Text
Gets or sets the Text.
Declaration
public string Text { get; set; }
Property Value
System.String
|
TextColor
Gets or sets the color of the visible text of the entry.
Declaration
public Color TextColor { get; set; }
Property Value
Xamarin.Forms.Color
|
VerticalTextAlignment
Gets or sets the vertical alignment of the Text.
Declaration
public TextAlignment VerticalTextAlignment { get; set; }
Property Value
Xamarin.Forms.TextAlignment
|
WatermarkText
Gets or sets the watermark of the control.
Declaration
public string WatermarkText { get; set; }
Property Value
System.String
|
WatermarkTextColor
Gets or sets the color of the watermark.
Declaration
public Color WatermarkTextColor { get; set; }
Property Value
Xamarin.Forms.Color
|
Methods
OnPropertyChanged(String)
Declaration
protected override void OnPropertyChanged(string propertyName = null)
Parameters
System.String
propertyName
|
Events
Completed
Occurs when the user finalizes the text in an entry with the return key.
Declaration
public event EventHandler Completed
Event Type
System.EventHandler
|
TextChanged
Occures after the text is changed.
Declaration
public event EventHandler<TextChangedEventArgs> TextChanged
Event Type
System.EventHandler<Xamarin.Forms.TextChangedEventArgs>
|