Insets.Add(Insets, Insets) Method
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.
Add two Insets.
[Android.Runtime.Register("add", "(Landroid/graphics/Insets;Landroid/graphics/Insets;)Landroid/graphics/Insets;", "", ApiSince=29)]
public static Android.Graphics.Insets Add (Android.Graphics.Insets a, Android.Graphics.Insets b);
[<Android.Runtime.Register("add", "(Landroid/graphics/Insets;Landroid/graphics/Insets;)Landroid/graphics/Insets;", "", ApiSince=29)>]
static member Add : Android.Graphics.Insets * Android.Graphics.Insets -> Android.Graphics.Insets
Parameters
- a
- Insets
The first Insets to add.
- b
- Insets
The second Insets to add.
Returns
a + b, i. e. all insets on every side are added together.
- Attributes
Remarks
Add two Insets.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.