35 references to ErrorIconAlignment
System.Windows.Forms (35)
winforms\Managed\System\WinForms\ErrorProvider.cs (35)
61const ErrorIconAlignment defaultIconAlignment = ErrorIconAlignment.MiddleRight; 792public ErrorIconAlignment GetIconAlignment(Control control) { 843public void SetIconAlignment(Control control, ErrorIconAlignment value) { 1328ErrorIconAlignment iconAlignment; 1459public ErrorIconAlignment IconAlignment { 1466if (!ClientUtils.IsEnumValid(value, (int)value, (int)ErrorIconAlignment.TopLeft, (int)ErrorIconAlignment.BottomRight)) 1468throw new InvalidEnumArgumentException("value", (int)value, typeof(ErrorIconAlignment)); 1490internal ErrorIconAlignment RTLTranslateIconAlignment(ErrorIconAlignment align) { 1493case ErrorIconAlignment.TopLeft: 1494return ErrorIconAlignment.TopRight; 1495case ErrorIconAlignment.MiddleLeft: 1496return ErrorIconAlignment.MiddleRight; 1497case ErrorIconAlignment.BottomLeft: 1498return ErrorIconAlignment.BottomRight; 1499case ErrorIconAlignment.TopRight: 1500return ErrorIconAlignment.TopLeft; 1501case ErrorIconAlignment.MiddleRight: 1502return ErrorIconAlignment.MiddleLeft; 1503case ErrorIconAlignment.BottomRight: 1504return ErrorIconAlignment.BottomLeft; 1526case ErrorIconAlignment.TopLeft: 1527case ErrorIconAlignment.MiddleLeft: 1528case ErrorIconAlignment.BottomLeft: 1531case ErrorIconAlignment.TopRight: 1532case ErrorIconAlignment.MiddleRight: 1533case ErrorIconAlignment.BottomRight: 1539case ErrorIconAlignment.TopLeft: 1540case ErrorIconAlignment.TopRight: 1543case ErrorIconAlignment.MiddleLeft: 1544case ErrorIconAlignment.MiddleRight: 1547case ErrorIconAlignment.BottomLeft: 1548case ErrorIconAlignment.BottomRight: