PageOrientation
枚举有一些值,如, Portrait
, PortraitUp
,PortraitDown
等等Landscape
..
但对我来说,无论是纵向还是纵向,我都可以这样做:
if (this.Orientation == PageOrientation.Portrait
|| this.Orientation == PageOrientation.PortraitUp
|| this.Orientation == PageOrientation.PortraitDown)
但由于它们是从零开始的数字,我知道我们可以用更短的方式检查这些。我怎样才能做到这一点?谢谢。