Enum LeaderboardColumnAffixMode
Whether a leaderboard column's authored prefix and/or suffix text wraps its cell value.
Namespace: Serenity.Leaderboard.Infrastructure.Views
Assembly: Serenity.UnityLeaderboard.Infrastructure.dll
Syntax
public enum LeaderboardColumnAffixMode
Remarks
Append-only: Unity serializes enums by ordinal, so a member inserted anywhere but the end would renumber the ones after it and silently repurpose every column already authored in a consumer's project.
Fields
| Name | Description |
|---|---|
| BOTH | Both the prefix and the suffix wrap the cell value. |
| NONE | Neither prefix nor suffix wraps the cell value. |
| PREFIX | Only the prefix is prepended to the cell value. |
| SUFFIX | Only the suffix is appended to the cell value. |