# LibTmux.TmuxOptionValue

- **Module:** LibTmux
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/320dc64f4b8b7815842471327a5e6b84a1499bf8/src/LibTmux/Options/TmuxOptionValue.cs#L27
- **Page:** https://libtmux.org/en/dotnet/latest/reference/libtmux-tmuxoptionvalue/

One option value as tmux reported it.

tmux has no types: every option comes back as text. The typed readings sit
alongside <see cref="Raw" /> rather than replacing it, so a caller that knows
better than the guess can always reach what tmux actually said.

## Members

- `TmuxOptionValue` (method): Initializes an option value.
- `Raw` (property): Gets the unescaped text tmux reported, or null when it reported none.
- `State` (property): Gets whether the value is absent, a flag, or ordinary text.
- `Boolean` (property): Gets the flag reading, or null when the value is not a flag.
- `Integer` (property): Gets the whole-number reading, or null when the value is not one.
