enum EndProductType
With the Type
, this specifies the subtype of window covering.
-
A roller shade.
Declaration
Swift
case rollerShade
-
A roman shade.
Declaration
Swift
case romanShade
-
A balloon shade.
Declaration
Swift
case balloonShade
-
A woven wood window covering.
Declaration
Swift
case wovenWood
-
A pleated shade.
Declaration
Swift
case pleatedShade
-
A cellular shade.
Declaration
Swift
case cellularShade
-
A layered shade.
Declaration
Swift
case layeredShade
-
A two-dimensional layered shade.
Declaration
Swift
case layeredShade2D
-
A sheer shade.
Declaration
Swift
case sheerShade
-
An interior blind that only tilts.
Declaration
Swift
case tiltOnlyInteriorBlind
-
An interior blind.
Declaration
Swift
case interiorBlind
-
A vertical blind strip curtain.
Declaration
Swift
case verticalBlindStripCurtain
-
An interior Venetian blind.
Declaration
Swift
case interiorVenetianBlind
-
An exterior Venetian blind.
Declaration
Swift
case exteriorVenetianBlind
-
A lateral left curtain.
Declaration
Swift
case lateralLeftCurtain
-
A lateral right curtain.
Declaration
Swift
case lateralRightCurtain
-
A central curtain.
Declaration
Swift
case centralCurtain
-
A roller shutter.
Declaration
Swift
case rollerShutter
-
An exterior vertical screen.
Declaration
Swift
case exteriorVerticalScreen
-
A patio or terrace awning.
Declaration
Swift
case awningTerracePatio
-
A vertical screen.
Declaration
Swift
case awningVerticalScreen
-
A pergola that only tilts.
Declaration
Swift
case tiltOnlyPergola
-
A swinging shutter.
Declaration
Swift
case swingingShutter
-
A sliding shutter.
Declaration
Swift
case slidingShutter
-
An unknown window covering type.
Declaration
Swift
case unknown
-
Creates a new instance with the specified raw value.
If there is no value of the type that corresponds with the specified raw value, this initializer returns
nil
. For example:enum PaperSize: String { case A4, A5, Letter, Legal } print(PaperSize(rawValue: "Legal")) // Prints "Optional("PaperSize.Legal")" print(PaperSize(rawValue: "Tabloid")) // Prints "nil"
Declaration
Swift
init?(rawValue: UInt64)
Parameters
rawValue
The raw value to use for the new instance.