12 = BindableProperty.CreateAttached(
"BorderColor", typeof(Color), typeof(
EntryProperties),
default);
34 = BindableProperty.CreateAttached(
"BorderWidth", typeof(
double), typeof(
EntryProperties), (
double)1);
56 = BindableProperty.CreateAttached(
"CornerRadius", typeof(
double), typeof(
EntryProperties), (
double)5);
78 = BindableProperty.CreateAttached(
"PaddingHorizontal", typeof(
double), typeof(
EntryProperties), (
double)5);
EntryProperties is a class which defines attached bindable properties used by our custom renderers fo...
static double GetPaddingHorizontal(BindableObject Bindable)
Gets the width of the padding of an Entry.
static Color GetBorderColor(BindableObject Bindable)
Gets the color of the border around an Entry.
static void SetBorderWidth(BindableObject Bindable, double Value)
Sets the width of the border around an Entry.
static readonly BindableProperty BorderColorProperty
Implements the attached property that defines the color of the border around an Entry.
static readonly BindableProperty PaddingHorizontalProperty
Implements the attached property that defines the width of the left/right side padding of an Entry.
static void SetBorderColor(BindableObject Bindable, Color Value)
Sets the color of the border around an Entry.
static void SetPaddingHorizontal(BindableObject Bindable, double Value)
Sets the width of the padding of an Entry.
static void SetCornerRadius(BindableObject Bindable, double Value)
Sets the corner radius of an Entry.
static double GetCornerRadius(BindableObject Bindable)
Gets the corner radius of an Entry.
static double GetBorderWidth(BindableObject Bindable)
Gets the width of the border around an Entry.
static readonly BindableProperty BorderWidthProperty
Implements the attached property that defines the width of the border around an Entry.
static readonly BindableProperty CornerRadiusProperty
Implements the attached property that defines the corner radius of an Entry.