# PaneID.rawValue

- **Module:** PaneID
- **Package:** libtmux-swift
- **Language:** Swift
- **Kind:** property
- **Source:** https://github.com/libtmux/libtmux-swift/blob/f02a4668570e1cc5198c941413750e021f42c214/Sources/LibTmux/Identity.swift#L84
- **Page:** https://libtmux.org/reference/swift/paneid-rawvalue/

The corresponding value of the raw type.

A new instance initialized with `rawValue` will be equivalent to this
instance. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }

    let selectedSize = PaperSize.Letter
    print(selectedSize.rawValue)
    // Prints "Letter"

    print(selectedSize == PaperSize(rawValue: selectedSize.rawValue)!)
    // Prints "true"
