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