[This is preliminary documentation and is subject to change.]

Possible values of the Orientation property

Namespace: Tools.MetadataT.ExifT
Assembly: Tools.Metadata (in Tools.Metadata.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[CLSCompliantAttribute(false)]
public enum OrientationValues
Visual Basic
<CLSCompliantAttribute(False)> _
Public Enumeration OrientationValues
Visual C++
[CLSCompliantAttribute(false)]
public enum class OrientationValues
F#
[<CLSCompliantAttribute(false)>]
type OrientationValues
JScript
public enum OrientationValues

Members

Member nameValueDescription
TopLeft1The 0th row is at the visual top of the image, and the 0th column is the visual left-hand side.
TopRight2The 0th row is at the visual top of the image, and the 0th column is the visual right-hand side.
BottomRight3The 0th row is at the visual bottom of the image, and the 0th column is the visual right-hand side.
BottomLeft4The 0th row is at the visual bottom of the image, and the 0th column is the visual left-hand side.
LeftTop5The 0th row is the visual left-hand side of the image, and the 0th column is the visual top.
RightTop6The 0th row is the visual right-hand side of the image, and the 0th column is the visual top.
RightBottom7The 0th row is the visual right-hand side of the image, and the 0th column is the visual bottom.
LeftBottom8The 0th row is the visual left-hand side of the image, and the 0th column is the visual bottom.
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

See Also