24 references to ContentDirection
System.Web (24)
UI\WebControls\Panel.cs (7)
98DefaultValue(ContentDirection.NotSet), 102public virtual ContentDirection Direction { 105return ContentDirection.NotSet; 112return direction == null ? ContentDirection.NotSet : (ContentDirection) direction; 279if (Direction == ContentDirection.LeftToRight) { 282else if (Direction == ContentDirection.RightToLeft) {
UI\WebControls\PanelStyle.cs (5)
82public virtual ContentDirection Direction { 85return (ContentDirection)(ViewState[STR_DIRECTION]); 87return ContentDirection.NotSet; 90if (value < ContentDirection.NotSet || value > ContentDirection.RightToLeft) {
UI\WebParts\AppearanceEditorPart.cs (7)
91TypeConverter directionConverter = TypeDescriptor.GetConverter(typeof(ContentDirection)); 92webPart.Direction = (ContentDirection)directionConverter.ConvertFromString(_direction.SelectedValue); 196TypeConverter directionConverter = TypeDescriptor.GetConverter(typeof(ContentDirection)); 199directionConverter.ConvertToString(ContentDirection.NotSet))); 201directionConverter.ConvertToString(ContentDirection.LeftToRight))); 203directionConverter.ConvertToString(ContentDirection.RightToLeft))); 284TypeConverter directionConverter = TypeDescriptor.GetConverter(typeof(ContentDirection));
UI\WebParts\DeclarativeCatalogPart.cs (1)
216public override ContentDirection Direction {
UI\WebParts\PageCatalogPart.cs (1)
201public override ContentDirection Direction {
UI\WebParts\WebPart.cs (1)
306public override ContentDirection Direction {
UI\WebParts\WebPartManager.cs (2)
2449return typeof(ContentDirection); 2493else if (type == typeof(ContentDirection)) {