All Downloads are FREE. Search and download functionalities are using the official Maven repository.

system.windows.SystemParameters Maven / Gradle / Ivy

/*
 *  MIT License
 *
 *  Copyright (c) 2024 MASES s.r.l.
 *
 *  Permission is hereby granted, free of charge, to any person obtaining a copy
 *  of this software and associated documentation files (the "Software"), to deal
 *  in the Software without restriction, including without limitation the rights
 *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 *  copies of the Software, and to permit persons to whom the Software is
 *  furnished to do so, subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in all
 *  copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 *  SOFTWARE.
 */

/**************************************************************************************
 * 
 *      This code was generated from a template using JCOReflector v. 1.15.0.0
 * 
 *      Manual changes to this file may cause unexpected behavior in your application.
 *      Manual changes to this file will be overwritten if the code is regenerated.
 * 
 *************************************************************************************/

package system.windows;

import org.mases.jcobridge.*;
import org.mases.jcobridge.netreflection.*;
import java.util.ArrayList;

// Import section
import system.TimeSpan;
import system.windows.controls.primitives.PopupAnimation;
import system.windows.CornerRadius;
import system.windows.media.Brush;
import system.windows.media.Color;
import system.windows.PowerLineStatus;
import system.windows.Rect;
import system.windows.ResourceKey;
import system.windows.Thickness;


/**
 * The base .NET class managing System.Windows.SystemParameters, PresentationFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.
 * 

* * .NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.SystemParameters *

* * Powered by JCOBridge: more info at https://www.jcobridge.com * * @author MASES s.r.l https://masesgroup.com * @version 1.15.0.0 */ public class SystemParameters extends NetObject { /** * Fully assembly qualified name: PresentationFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 */ public static final String assemblyFullName = "PresentationFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"; /** * Assembly name: PresentationFramework */ public static final String assemblyShortName = "PresentationFramework"; /** * Qualified class name: System.Windows.SystemParameters */ public static final String className = "System.Windows.SystemParameters"; static JCOBridge bridge = JCOBridgeInstance.getInstance(assemblyFullName); /** * The type managed from JCOBridge. See {@link JCType} */ public static JCType classType = createType(); static JCEnum enumInstance = null; JCObject classInstance = null; static JCType createType() { try { String classToCreate = className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); if (JCOReflector.getDebug()) JCOReflector.writeLog("Creating %s", classToCreate); JCType typeCreated = bridge.GetType(classToCreate); if (JCOReflector.getDebug()) JCOReflector.writeLog("Created: %s", (typeCreated != null) ? typeCreated.toString() : "Returned null value"); return typeCreated; } catch (JCException e) { JCOReflector.writeLog(e); return null; } } void addReference(String ref) throws Throwable { try { bridge.AddReference(ref); } catch (JCNativeException jcne) { throw translateException(jcne); } } /** * Internal constructor. Use with caution */ public SystemParameters(java.lang.Object instance) throws Throwable { super(instance); if (instance instanceof JCObject) { classInstance = (JCObject) instance; } else throw new Exception("Cannot manage object, it is not a JCObject"); } public String getJCOAssemblyName() { return assemblyFullName; } public String getJCOClassName() { return className; } public String getJCOObjectName() { return className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); } public java.lang.Object getJCOInstance() { return classInstance; } public void setJCOInstance(JCObject instance) { classInstance = instance; super.setJCOInstance(classInstance); } public JCType getJCOType() { return classType; } /** * Try to cast the {@link IJCOBridgeReflected} instance into {@link SystemParameters}, a cast assert is made to check if types are compatible. * @param from {@link IJCOBridgeReflected} instance to be casted * @return {@link SystemParameters} instance * @throws java.lang.Throwable in case of error during cast operation */ public static SystemParameters cast(IJCOBridgeReflected from) throws Throwable { NetType.AssertCast(classType, from); return new SystemParameters(from.getJCOInstance()); } // Constructors section public SystemParameters() throws Throwable { } // Methods section // Properties section public static boolean getClientAreaAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.NullReferenceException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("ClientAreaAnimation"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getComboBoxAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("ComboBoxAnimation"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getCursorShadow() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("CursorShadow"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getDragFullWindows() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("DragFullWindows"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getDropShadow() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("DropShadow"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getFlatMenu() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("FlatMenu"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getGradientCaptions() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("GradientCaptions"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getHighContrast() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("HighContrast"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getHotTracking() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("HotTracking"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIconTitleWrap() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IconTitleWrap"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsGlassEnabled() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsGlassEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsImmEnabled() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsImmEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsMediaCenter() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsMediaCenter"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsMenuDropRightAligned() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsMenuDropRightAligned"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsMiddleEastEnabled() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsMiddleEastEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsMousePresent() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsMousePresent"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsMouseWheelPresent() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsMouseWheelPresent"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsPenWindows() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsPenWindows"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsRemotelyControlled() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsRemotelyControlled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsRemoteSession() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsRemoteSession"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsSlowMachine() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsSlowMachine"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getIsTabletPC() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("IsTabletPC"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getKeyboardCues() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("KeyboardCues"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getKeyboardPreference() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("KeyboardPreference"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getListBoxSmoothScrolling() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("ListBoxSmoothScrolling"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getMenuAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("MenuAnimation"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getMenuDropAlignment() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("MenuDropAlignment"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getMenuFade() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("MenuFade"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getMinimizeAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("MinimizeAnimation"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getSelectionFade() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("SelectionFade"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getShowSounds() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("ShowSounds"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getSnapToDefaultButton() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("SnapToDefaultButton"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getStylusHotTracking() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("StylusHotTracking"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getSwapButtons() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("SwapButtons"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getToolTipAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("ToolTipAnimation"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getToolTipFade() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("ToolTipFade"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static boolean getUIEffects() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (boolean)classType.Get("UIEffects"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getBorderWidth() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("BorderWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getCaptionHeight() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("CaptionHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getCaptionWidth() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("CaptionWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getCaretWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.collections.generic.KeyNotFoundException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("CaretWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getCursorHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("CursorHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getCursorWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("CursorWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFixedFrameHorizontalBorderHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FixedFrameHorizontalBorderHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFixedFrameVerticalBorderWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FixedFrameVerticalBorderWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFocusBorderHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FocusBorderHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFocusBorderWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FocusBorderWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFocusHorizontalBorderHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FocusHorizontalBorderHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFocusVerticalBorderWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FocusVerticalBorderWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFullPrimaryScreenHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FullPrimaryScreenHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getFullPrimaryScreenWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("FullPrimaryScreenWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getHorizontalScrollBarButtonWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("HorizontalScrollBarButtonWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getHorizontalScrollBarHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("HorizontalScrollBarHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getHorizontalScrollBarThumbWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("HorizontalScrollBarThumbWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getIconGridHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("IconGridHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getIconGridWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("IconGridWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getIconHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("IconHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getIconHorizontalSpacing() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("IconHorizontalSpacing"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getIconVerticalSpacing() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("IconVerticalSpacing"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getIconWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("IconWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getKanjiWindowHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("KanjiWindowHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMaximizedPrimaryScreenHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MaximizedPrimaryScreenHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMaximizedPrimaryScreenWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MaximizedPrimaryScreenWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMaximumWindowTrackHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MaximumWindowTrackHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMaximumWindowTrackWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MaximumWindowTrackWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMenuBarHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MenuBarHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMenuButtonHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MenuButtonHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMenuButtonWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MenuButtonWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMenuCheckmarkHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MenuCheckmarkHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMenuCheckmarkWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MenuCheckmarkWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMenuHeight() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MenuHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMenuWidth() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MenuWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimizedGridHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimizedGridHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimizedGridWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimizedGridWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimizedWindowHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimizedWindowHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimizedWindowWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimizedWindowWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimumHorizontalDragDistance() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimumHorizontalDragDistance"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimumVerticalDragDistance() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimumVerticalDragDistance"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimumWindowHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimumWindowHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimumWindowTrackHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimumWindowTrackHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimumWindowTrackWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimumWindowTrackWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMinimumWindowWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MinimumWindowWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMouseHoverHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MouseHoverHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getMouseHoverWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("MouseHoverWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getPrimaryScreenHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("PrimaryScreenHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getPrimaryScreenWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("PrimaryScreenWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getResizeFrameHorizontalBorderHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ResizeFrameHorizontalBorderHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getResizeFrameVerticalBorderWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ResizeFrameVerticalBorderWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getScrollHeight() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ScrollHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getScrollWidth() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ScrollWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getSmallCaptionHeight() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("SmallCaptionHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getSmallCaptionWidth() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("SmallCaptionWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getSmallIconHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("SmallIconHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getSmallIconWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("SmallIconWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getSmallWindowCaptionButtonHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("SmallWindowCaptionButtonHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getSmallWindowCaptionButtonWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("SmallWindowCaptionButtonWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getThickHorizontalBorderHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ThickHorizontalBorderHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getThickVerticalBorderWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ThickVerticalBorderWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getThinHorizontalBorderHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ThinHorizontalBorderHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getThinVerticalBorderWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("ThinVerticalBorderWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getVerticalScrollBarButtonHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("VerticalScrollBarButtonHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getVerticalScrollBarThumbHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("VerticalScrollBarThumbHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getVerticalScrollBarWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("VerticalScrollBarWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getVirtualScreenHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("VirtualScreenHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getVirtualScreenLeft() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("VirtualScreenLeft"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getVirtualScreenTop() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("VirtualScreenTop"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getVirtualScreenWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("VirtualScreenWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getWindowCaptionButtonHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("WindowCaptionButtonHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getWindowCaptionButtonWidth() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("WindowCaptionButtonWidth"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static double getWindowCaptionHeight() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (double)classType.Get("WindowCaptionHeight"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static int getBorder() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (int)classType.Get("Border"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static int getForegroundFlashCount() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (int)classType.Get("ForegroundFlashCount"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static int getKeyboardDelay() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (int)classType.Get("KeyboardDelay"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static int getKeyboardSpeed() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (int)classType.Get("KeyboardSpeed"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static int getMenuShowDelay() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (int)classType.Get("MenuShowDelay"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static int getWheelScrollLines() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (int)classType.Get("WheelScrollLines"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static java.lang.String getUxThemeColor() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (java.lang.String)classType.Get("UxThemeColor"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static java.lang.String getUxThemeName() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { return (java.lang.String)classType.Get("UxThemeName"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static TimeSpan getMouseHoverTime() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MouseHoverTime"); return new TimeSpan(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static PopupAnimation getComboBoxPopupAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ComboBoxPopupAnimation"); return new PopupAnimation(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static PopupAnimation getMenuPopupAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuPopupAnimation"); return new PopupAnimation(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static PopupAnimation getToolTipPopupAnimation() throws Throwable, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.NotSupportedException, system.ArgumentException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ToolTipPopupAnimation"); return new PopupAnimation(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static CornerRadius getWindowCornerRadius() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowCornerRadius"); return new CornerRadius(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static Brush getWindowGlassBrush() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowGlassBrush"); return new Brush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static Color getWindowGlassColor() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowGlassColor"); return new Color(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static PowerLineStatus getPowerLineStatus() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PowerLineStatus"); return new PowerLineStatus(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static Rect getWorkArea() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.FormatException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WorkArea"); return new Rect(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getBorderKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("BorderKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getBorderWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("BorderWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getCaptionHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CaptionHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getCaptionWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CaptionWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getCaretWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CaretWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getClientAreaAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ClientAreaAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getComboBoxAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ComboBoxAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getComboBoxPopupAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ComboBoxPopupAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getCursorHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CursorHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getCursorShadowKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CursorShadowKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getCursorWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CursorWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getDragFullWindowsKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DragFullWindowsKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getDropShadowKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DropShadowKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFixedFrameHorizontalBorderHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FixedFrameHorizontalBorderHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFixedFrameVerticalBorderWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FixedFrameVerticalBorderWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFlatMenuKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FlatMenuKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFocusBorderHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FocusBorderHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFocusBorderWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FocusBorderWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFocusHorizontalBorderHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FocusHorizontalBorderHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFocusVerticalBorderWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FocusVerticalBorderWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFocusVisualStyleKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FocusVisualStyleKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getForegroundFlashCountKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ForegroundFlashCountKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFullPrimaryScreenHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FullPrimaryScreenHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getFullPrimaryScreenWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FullPrimaryScreenWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getGradientCaptionsKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("GradientCaptionsKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getHighContrastKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("HighContrastKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getHorizontalScrollBarButtonWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("HorizontalScrollBarButtonWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getHorizontalScrollBarHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("HorizontalScrollBarHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getHorizontalScrollBarThumbWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("HorizontalScrollBarThumbWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getHotTrackingKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("HotTrackingKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIconGridHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IconGridHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIconGridWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IconGridWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIconHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IconHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIconHorizontalSpacingKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IconHorizontalSpacingKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIconTitleWrapKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IconTitleWrapKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIconVerticalSpacingKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IconVerticalSpacingKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIconWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IconWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsImmEnabledKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsImmEnabledKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsMediaCenterKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsMediaCenterKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsMenuDropRightAlignedKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsMenuDropRightAlignedKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsMiddleEastEnabledKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsMiddleEastEnabledKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsMousePresentKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsMousePresentKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsMouseWheelPresentKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsMouseWheelPresentKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsPenWindowsKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsPenWindowsKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsRemotelyControlledKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsRemotelyControlledKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsRemoteSessionKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsRemoteSessionKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsSlowMachineKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsSlowMachineKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getIsTabletPCKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IsTabletPCKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getKanjiWindowHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("KanjiWindowHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getKeyboardCuesKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("KeyboardCuesKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getKeyboardDelayKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("KeyboardDelayKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getKeyboardPreferenceKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("KeyboardPreferenceKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getKeyboardSpeedKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("KeyboardSpeedKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getListBoxSmoothScrollingKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ListBoxSmoothScrollingKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMaximizedPrimaryScreenHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MaximizedPrimaryScreenHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMaximizedPrimaryScreenWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MaximizedPrimaryScreenWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMaximumWindowTrackHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MaximumWindowTrackHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMaximumWindowTrackWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MaximumWindowTrackWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuBarHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuBarHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuButtonHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuButtonHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuButtonWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuButtonWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuCheckmarkHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuCheckmarkHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuCheckmarkWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuCheckmarkWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuDropAlignmentKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuDropAlignmentKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuFadeKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuFadeKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuPopupAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuPopupAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuShowDelayKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuShowDelayKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMenuWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MenuWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimizeAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimizeAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimizedGridHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimizedGridHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimizedGridWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimizedGridWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimizedWindowHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimizedWindowHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimizedWindowWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimizedWindowWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimumWindowHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimumWindowHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimumWindowTrackHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimumWindowTrackHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimumWindowTrackWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimumWindowTrackWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMinimumWindowWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MinimumWindowWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMouseHoverHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MouseHoverHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMouseHoverTimeKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MouseHoverTimeKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getMouseHoverWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MouseHoverWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getNavigationChromeDownLevelStyleKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("NavigationChromeDownLevelStyleKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getNavigationChromeStyleKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("NavigationChromeStyleKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getPowerLineStatusKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PowerLineStatusKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getPrimaryScreenHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PrimaryScreenHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getPrimaryScreenWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PrimaryScreenWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getResizeFrameHorizontalBorderHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ResizeFrameHorizontalBorderHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getResizeFrameVerticalBorderWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ResizeFrameVerticalBorderWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getScrollHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ScrollHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getScrollWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ScrollWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSelectionFadeKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SelectionFadeKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getShowSoundsKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ShowSoundsKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSmallCaptionHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SmallCaptionHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSmallCaptionWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SmallCaptionWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSmallIconHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SmallIconHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSmallIconWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SmallIconWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSmallWindowCaptionButtonHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SmallWindowCaptionButtonHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSmallWindowCaptionButtonWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SmallWindowCaptionButtonWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSnapToDefaultButtonKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SnapToDefaultButtonKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getStylusHotTrackingKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("StylusHotTrackingKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getSwapButtonsKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SwapButtonsKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getThickHorizontalBorderHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ThickHorizontalBorderHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getThickVerticalBorderWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ThickVerticalBorderWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getThinHorizontalBorderHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ThinHorizontalBorderHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getThinVerticalBorderWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ThinVerticalBorderWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getToolTipAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ToolTipAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getToolTipFadeKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ToolTipFadeKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getToolTipPopupAnimationKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ToolTipPopupAnimationKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getUIEffectsKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("UIEffectsKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getVerticalScrollBarButtonHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("VerticalScrollBarButtonHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getVerticalScrollBarThumbHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("VerticalScrollBarThumbHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getVerticalScrollBarWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("VerticalScrollBarWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getVirtualScreenHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("VirtualScreenHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getVirtualScreenLeftKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("VirtualScreenLeftKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getVirtualScreenTopKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("VirtualScreenTopKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getVirtualScreenWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("VirtualScreenWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getWheelScrollLinesKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WheelScrollLinesKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getWindowCaptionButtonHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowCaptionButtonHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getWindowCaptionButtonWidthKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowCaptionButtonWidthKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getWindowCaptionHeightKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowCaptionHeightKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static ResourceKey getWorkAreaKey() throws Throwable { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WorkAreaKey"); return new ResourceKey(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static Thickness getWindowNonClientFrameThickness() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowNonClientFrameThickness"); return new Thickness(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static Thickness getWindowResizeBorderThickness() throws Throwable, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.ArgumentException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.IndexOutOfRangeException, system.componentmodel.Win32Exception { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WindowResizeBorderThickness"); return new Thickness(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } // Instance Events section }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy