Enum TagDisplayMode
The different settings for tag display text in the side-by-side editor.
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public enum TagDisplayMode
Fields
Name | Description |
---|---|
DisplayText | Show the DisplayText on the tag. This is the most common way to show tags, it makes them easy to identify while still keeping the tags short. |
Invalid | An invalid tag display mode. Used to indicate failures. |
NoText | Show tags without text. This makes them as small as possible. |
TagContent | Show the TagContent on the tag. This shows the full text that the tag consists of, and it can result in very long tags. However it is sometimes important to see exactly what the content of a tag is, and that's when this mode is useful. |
TagId | Show tag ID (only) on the tags. This can be useful to identify tags between source and target in a segment, or tags that have been split, as the corresponding tags should have the same ID (while other tags with different ID could still have the same tag content). |
Unspecified | This value is used when source and target views in the side-by-side edit control use different tag display modes, or if the display mode for some other reason could not be determined. |