Are you wanting to document the bit cast
V0:0 is bit 0 of V0
V0:1 is bit 1 of V0
...
V0:15 is bit 15 of V0
Or are you wanting to enumerate constants for the various possible values for V0 (e.g. state)
value of
0 HomePosition
1 Running
2 Idling
3 WarmingUp
4 ShutDown
Do-more can do both.
Bit casts, go to the Element Browser (F9) and enter the cast (e.g. V0:15) and set its Nickname to whatever you want, and hit Write Details. Or go to the Documentation Editor (Ctrl+D) and hit the Add records button in the view's toolbar (first button) and enter the cast in the Element field, enter the Nickname, then hit the Add Record button.
Symbolic Constants can be done via the Documentation Editor (Ctrl+D). Hit the Symb button in the view's toolbar (Symbolic Constant) (2nd button). Give the symbolic name in the Constant Name field, then enter the value (you can enter it as decimal constant, octal constant, hexadecimal constant, or real constant).
Note that when you use Symbolic Constants, that does NOT mean that the constant of "0" is "HomePosition" EVERYWHERE. No. You must use the element "HomePosition" specifically where that means something (say in a relational contact). That element IS "HomePosition" that is a symbolic constant with a value of 0. It is NOT the "constant 0", which is just a value. Basically, use the text "HomePosition" everywhere you want to reference that named constant, but use "0" where you just need the number 0.