Thickness.Addition Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Addition(Thickness, Thickness) |
Adds two thickness instances by summing their corresponding edges. |
Addition(Thickness, Double) |
Adds a uniform value to all edges of the thickness. |
Addition(Thickness, Thickness)
- Source:
- Thickness.cs
- Source:
- Thickness.cs
- Source:
- Thickness.cs
Adds two thickness instances by summing their corresponding edges.
public:
static Microsoft::Maui::Thickness operator +(Microsoft::Maui::Thickness left, Microsoft::Maui::Thickness right);
public static Microsoft.Maui.Thickness operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right);
static member ( + ) : Microsoft.Maui.Thickness * Microsoft.Maui.Thickness -> Microsoft.Maui.Thickness
Public Shared Operator + (left As Thickness, right As Thickness) As Thickness
Parameters
- left
- Thickness
The first thickness.
- right
- Thickness
The second thickness.
Returns
A new thickness with summed edges.
Applies to
Addition(Thickness, Double)
- Source:
- Thickness.cs
- Source:
- Thickness.cs
- Source:
- Thickness.cs
Adds a uniform value to all edges of the thickness.
public:
static Microsoft::Maui::Thickness operator +(Microsoft::Maui::Thickness left, double addend);
public static Microsoft.Maui.Thickness operator +(Microsoft.Maui.Thickness left, double addend);
static member ( + ) : Microsoft.Maui.Thickness * double -> Microsoft.Maui.Thickness
Public Shared Operator + (left As Thickness, addend As Double) As Thickness
Parameters
- left
- Thickness
The original thickness.
- addend
- Double
The value to add to each edge.
Returns
A new thickness with adjusted edges.