Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[housekeeping] Automated PR to fix formatting errors #17443

Merged
merged 1 commit into from Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/Core/src/Layouts/Flex.cs
Expand Up @@ -296,17 +296,17 @@ class Item : IEnumerable<Item>
/// <summary>This property defines the margin space required on the bottom edge of the item.</summary>
/// <value>The top edge margin space (negative values are allowed).</value>
/// <remarks>The default value for this property is 0.</remarks>
public float MarginBottom { get; set; }
public float MarginBottom { get; set; }

/// <summary>This property defines the margin space required on the left edge of the item.</summary>
/// <value>The top edge margin space (negative values are allowed).</value>
/// <remarks>The default value for this property is 0.</remarks>
public float MarginLeft { get; set; }
public float MarginLeft { get; set; }

/// <summary>This property defines the margin space required on the right edge of the item.</summary>
/// <value>The top edge margin space (negative values are allowed).</value>
/// <remarks>The default value for this property is 0.</remarks>
public float MarginRight { get; set; }
public float MarginRight { get; set; }

/// <summary>This property defines the margin space required on the top edge of the item.</summary>
/// <value>The top edge margin space (negative values are allowed).</value>
Expand All @@ -330,19 +330,19 @@ public int Order

/// <summary>This property defines the height of the item's bottom edge padding space that should be used when laying out child items.</summary>
/// <value>The bottom edge padding space.Negative values are not allowed.</value>
public float PaddingBottom { get; set; }
public float PaddingBottom { get; set; }

/// <summary>This property defines the height of the item's left edge padding space that should be used when laying out child items.</summary>
/// <value>The bottom edge padding space.Negative values are not allowed.</value>
public float PaddingLeft { get; set; }
public float PaddingLeft { get; set; }

/// <summary>This property defines the height of the item's right edge padding space that should be used when laying out child items.</summary>
/// <value>The bottom edge padding space.Negative values are not allowed.</value>
public float PaddingRight { get; set; }
public float PaddingRight { get; set; }

/// <summary>This property defines the height of the item's top edge padding space that should be used when laying out child items.</summary>
/// <value>The bottom edge padding space.Negative values are not allowed.</value>
public float PaddingTop { get; set; }
public float PaddingTop { get; set; }

/// <summary>This property defines whether the item should be positioned by the flexbox rules of the layout engine(Relative) or have an absolute fixed position (Absolute). If this property is set to Absolute, the<see cref="P:Microsoft.Maui.Controls.Flex.Item.Left" />, <see cref = "P:Microsoft.Maui.Controls.Flex.Item.Right" />, <see cref = "P:Microsoft.Maui.Controls.Flex.Item.Top" /> and <see cref= "P:Microsoft.Maui.Controls.Flex.Item.Bottom" /> properties will then be used to determine the item's fixed position in its container.</summary>
/// <value>Any value part of the<see cref="T:Microsoft.Maui.Controls.Flex.Position" /> enumeration.</value>
Expand Down