-api-id | -api-type |
---|---|
P:Windows.UI.Xaml.Controls.Primitives.ListViewItemPresenter.ContentMargin |
winrt property |
Gets or sets an internal margin between presented content and its presenter.
<listViewItemPresenter ContentMargin="uniform"/>
- or -
<listViewItemPresenter ContentMargin="left&right,top&bottom"/>
- or -
<listViewItemPresenter ContentMargin="left,top,right,bottom"/>
- uniform
- uniformA numeric value that specifies a uniform Thickness. The uniform value is applied to all four Thickness values (Left, Top, Right, Bottom).
- left&right
- left&rightA numeric value that specifies the Left and Right values of a symmetrical Thickness.
- top&bottom
- top&bottomA numeric value that specifies the Top and Bottom values of a symmetrical Thickness.
- left,top,right,bottom
- left,top,right,bottomFloating-point values that specify the four possible dimension values of a Thickness structure (Left, Top, Right, Bottom).