# LibTmux.TmuxOptionValue

- **Module:** LibTmux
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/6656a563ec9e07ab52e0c3ac96f7704fc94cc0c0/src/LibTmux/Options/TmuxOptionValue.cs#L27
- **Page:** https://libtmux.org/reference/dotnet/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.
