public static ComponentOrientation GetOrientation(ResourceBundle bdl)
        {
            ComponentOrientation result = null;

            try
            {
                result = (ComponentOrientation)bdl.GetObject("Orientation");
            }
            catch (Exception)
            {
            }

            if (result == null)
            {
                result = GetOrientation(bdl.Locale);
            }
            if (result == null)
            {
                result = GetOrientation(Locale.Default);
            }
            return(result);
        }
		/// <summary>
		/// Sets the language-sensitive orientation that is to be used to order
		/// the elements or text within this component.
		/// </summary>
		public void setComponentOrientation(ComponentOrientation @o)
		{
		}
		/// <summary>
		/// Sets the <code>ComponentOrientation</code> property of this container
		/// and all components contained within it.
		/// </summary>
		public void applyComponentOrientation(ComponentOrientation @o)
		{
		}
Beispiel #4
0
 /// <summary>
 /// Sets the language-sensitive orientation that is to be used to order
 /// the elements or text within this component.
 /// </summary>
 public void setComponentOrientation(ComponentOrientation @o)
 {
 }
Beispiel #5
0
 /// <summary>
 /// Sets the <code>ComponentOrientation</code> property of this component
 /// and all components contained within it.
 /// </summary>
 public void applyComponentOrientation(ComponentOrientation @orientation)
 {
 }