Entry.SetCursorColor Method

Definition

Overloads

SetCursorColor(BindableObject, Color)

Sets the color of the cursor.

SetCursorColor(IPlatformElementConfiguration<iOS,Entry>, Color)

Sets the color of the cursor and returns a fluent object.

SetCursorColor(BindableObject, Color)

Sets the color of the cursor.

public:
 static void SetCursorColor(Microsoft::Maui::Controls::BindableObject ^ element, Microsoft::Maui::Graphics::Color ^ value);
public static void SetCursorColor (Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value);
static member SetCursorColor : Microsoft.Maui.Controls.BindableObject * Microsoft.Maui.Graphics.Color -> unit
Public Sub SetCursorColor (element As BindableObject, value As Color)

Parameters

element
BindableObject

The element whose cursor color to Set.

value
Color

The new cursor color.

Applies to

SetCursorColor(IPlatformElementConfiguration<iOS,Entry>, Color)

Sets the color of the cursor and returns a fluent object.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::iOS ^, Microsoft::Maui::Controls::Entry ^> ^ SetCursorColor(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::iOS ^, Microsoft::Maui::Controls::Entry ^> ^ config, Microsoft::Maui::Graphics::Color ^ value);
public static Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS,Microsoft.Maui.Controls.Entry> SetCursorColor (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS,Microsoft.Maui.Controls.Entry> config, Microsoft.Maui.Graphics.Color value);
static member SetCursorColor : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS, Microsoft.Maui.Controls.Entry> * Microsoft.Maui.Graphics.Color -> Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS, Microsoft.Maui.Controls.Entry>
<Extension()>
Public Function SetCursorColor (config As IPlatformElementConfiguration(Of iOS, Entry), value As Color) As IPlatformElementConfiguration(Of iOS, Entry)

Parameters

config
IPlatformElementConfiguration<iOS,Entry>

The platform configuration for the element whose cursor color to Set.

value
Color

The new cursor color.

Returns

A fluent object on which the developer can make further method calls.

Applies to