You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/badge/position.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ The Position parameter accepts a member of the BadgePosition enum and controls t
21
21
| Enum member | Description |
22
22
|---------------|--------|
23
23
|`Edge` <br /> (default) | The center of the Badge is at a corner of the parent container. |
24
+
|`Inline`| The Badge renders as part of the normal content flow of the web page. The `HorizontalAlign` and `VerticalAlign` parameters have no effect with `Inline``Position`. |
24
25
|`Inside`| The Badge renders entirely inside the parent container. |
25
26
|`Outside`| The Badge renders entirely outside the parent container. |
26
27
@@ -85,6 +86,7 @@ The following example lets you experiment with the available settings that contr
85
86
private List<BadgePosition> Positions { get; set; } = new List<BadgePosition>()
86
87
{
87
88
BadgePosition.Edge,
89
+
BadgePosition.Inline,
88
90
BadgePosition.Inside,
89
91
BadgePosition.Outside
90
92
};
@@ -107,4 +109,4 @@ The following example lets you experiment with the available settings that contr
0 commit comments