# LibTmux.TmuxEnvironmentEntry

- **Module:** LibTmux
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/320dc64f4b8b7815842471327a5e6b84a1499bf8/src/LibTmux/Environment/TmuxEnvironmentOperations.cs#L12
- **Page:** https://libtmux.org/en/dotnet/latest/reference/libtmux-tmuxenvironmententry/

One variable in a tmux environment.

tmux keeps three states, not two. A variable can hold a value, be absent, or
be marked removed, which tells tmux to strip it from the environment of
panes it spawns even though the parent process has it.

## Members

- `TmuxEnvironmentEntry` (method): Initializes one environment variable.
- `Name` (property): Gets the variable name.
- `Value` (property): Gets the value, or null when the variable is marked removed.
- `IsRemoved` (property): Gets whether tmux strips this variable from new panes.
