# LibTmux.DisplayPopupRequest

- **Module:** LibTmux
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/320dc64f4b8b7815842471327a5e6b84a1499bf8/src/LibTmux/Requests/DisplayPopupRequest.cs#L21
- **Page:** https://libtmux.org/en/dotnet/latest/reference/libtmux-displaypopuprequest/

Describes one <c>display-popup</c> invocation.

A popup needs an attached client and blocks the invoking command until it
closes, so a caller with no client, or with a command that never exits, will
wait. Cancel the call rather than expecting it to return.

## Members

- `Command` (property): Gets the command the popup runs.
- `CloseMode` (property): Gets when the popup closes on its own.
- `CloseExisting` (property): Gets whether an open popup is closed instead.
- `TargetClient` (property): Gets the client to show the popup on.
- `Width` (property): Gets the popup width.
- `Height` (property): Gets the popup height.
- `X` (property): Gets the column to place the popup at.
- `Y` (property): Gets the row to place the popup at.
- `StartDirectory` (property): Gets the working directory for the command.
- `Title` (property): Gets the popup title.
- `BorderLines` (property): Gets the border line style.
- `Style` (property): Gets the popup style.
- `BorderStyle` (property): Gets the popup border style.
- `Environment` (property): Gets the environment entries set on the command.
- `NoBorder` (property): Gets whether the popup has no border.
- `CloseOnAnyKey` (property): Gets whether any key closes the popup.
- `NoKeys` (property): Gets whether the popup ignores keys.
- `ToCommand` (method): Returns a popup request as one tmux command.
