Compartilhar via


Image.SetBlendColor Method

Definition

Overloads

SetBlendColor(BindableObject, Color)

Sets the blend color.

SetBlendColor(IPlatformElementConfiguration<Tizen,Image>, Color)

Sets the blend color.

SetBlendColor(BindableObject, Color)

Source:
Image.cs
Source:
Image.cs

Sets the blend color.

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

Parameters

element
BindableObject
color
Color

The new blend color value.

Applies to

SetBlendColor(IPlatformElementConfiguration<Tizen,Image>, Color)

Source:
Image.cs
Source:
Image.cs

Sets the blend color.

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

Parameters

config
IPlatformElementConfiguration<Tizen,Image>

The platform configuration for the image on the Tizen platform whose blend color to set.

color
Color

The new blend color value.

Returns

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

Applies to