Package system.windows.forms
Class Application
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.windows.forms.Application
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Application extends NetObject
The base .NET class managing System.Windows.Forms.Application, System.Windows.Forms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.Forms.Application
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Windows.Forms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: System.Windows.Formsstatic java.lang.String
className
Qualified class name: System.Windows.Forms.Applicationstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description Application()
Application(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
AddMessageFilter(IMessageFilter value)
static Application
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoApplication
, a cast assert is made to check if types are compatible.static void
DoEvents()
static void
EnableVisualStyles()
static void
Exit()
static void
Exit(CancelEventArgs e)
static void
ExitThread()
static boolean
FilterMessage(JCORefOut<Message> message)
static boolean
getAllowQuit()
static SystemColorMode
getColorMode()
static java.lang.String
getCommonAppDataPath()
static RegistryKey
getCommonAppDataRegistry()
static java.lang.String
getCompanyName()
static CultureInfo
getCurrentCulture()
static InputLanguage
getCurrentInputLanguage()
static java.lang.String
getExecutablePath()
static HighDpiMode
getHighDpiMode()
static boolean
getIsDarkModeEnabled()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic java.lang.String
getLocalUserAppDataPath()
static boolean
getMessageLoop()
static FormCollection
getOpenForms()
static java.lang.String
getProductName()
static java.lang.String
getProductVersion()
static boolean
getRenderWithVisualStyles()
static java.lang.String
getSafeTopLevelCaptionFormat()
static java.lang.String
getStartupPath()
static SystemColorMode
getSystemColorMode()
static java.lang.String
getUserAppDataPath()
static RegistryKey
getUserAppDataRegistry()
static boolean
getUseVisualStyles()
static boolean
getUseWaitCursor()
static VisualStyleState
getVisualStyleState()
static ApartmentState
OleRequired()
static void
OnThreadException(NetException t)
static void
RaiseIdle(EventArgs e)
static void
RemoveMessageFilter(IMessageFilter value)
static void
Restart()
static void
Run()
static void
Run(ApplicationContext context)
static void
Run(Form mainForm)
static void
SetColorMode(SystemColorMode systemColorMode)
static void
SetCompatibleTextRenderingDefault(boolean defaultValue)
static void
setCurrentCulture(CultureInfo CurrentCulture)
static void
setCurrentInputLanguage(InputLanguage CurrentInputLanguage)
static void
SetDefaultFont(Font font)
static boolean
SetHighDpiMode(HighDpiMode highDpiMode)
void
setJCOInstance(JCObject instance)
static void
setSafeTopLevelCaptionFormat(java.lang.String SafeTopLevelCaptionFormat)
static boolean
SetSuspendState(PowerState state, boolean force, boolean disableWakeEvent)
static void
SetUnhandledExceptionMode(UnhandledExceptionMode mode)
static void
SetUnhandledExceptionMode(UnhandledExceptionMode mode, boolean threadScope)
static void
setUseVisualStyles(boolean UseVisualStyles)
static void
setUseWaitCursor(boolean UseWaitCursor)
static void
setVisualStyleState(VisualStyleState VisualStyleState)
static void
UnregisterMessageLoop()
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Windows.Forms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Windows.Forms- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Windows.Forms.Application- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Application cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoApplication
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Application
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
FilterMessage
public static boolean FilterMessage(JCORefOut<Message> message) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
SetHighDpiMode
public static boolean SetHighDpiMode(HighDpiMode highDpiMode) throws java.lang.Throwable, ArgumentException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, InvalidEnumArgumentException, NullReferenceException, NotSupportedException
-
SetSuspendState
public static boolean SetSuspendState(PowerState state, boolean force, boolean disableWakeEvent) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
OleRequired
public static ApartmentState OleRequired() throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
-
AddMessageFilter
public static void AddMessageFilter(IMessageFilter value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
DoEvents
public static void DoEvents() throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, CultureNotFoundException, NotSupportedException, ObjectDisposedException, ArgumentOutOfRangeException, MulticastNotSupportedException, Win32Exception, OutOfMemoryException, OverflowException, InvalidAsynchronousStateException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
CultureNotFoundException
NotSupportedException
ObjectDisposedException
ArgumentOutOfRangeException
MulticastNotSupportedException
Win32Exception
OutOfMemoryException
OverflowException
InvalidAsynchronousStateException
-
EnableVisualStyles
public static void EnableVisualStyles() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OutOfMemoryException, IndexOutOfRangeException, CultureNotFoundException, SerializationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
OutOfMemoryException
IndexOutOfRangeException
CultureNotFoundException
SerializationException
-
Exit
public static void Exit() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentException, LockRecursionException, NullReferenceException, OutOfMemoryException, ObjectDisposedException, AbandonedMutexException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, ArgumentNullException, RankException, ArrayTypeMismatchException, InvalidCastException, SynchronizationLockException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
ArgumentException
LockRecursionException
NullReferenceException
OutOfMemoryException
ObjectDisposedException
AbandonedMutexException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidOperationException
ArgumentNullException
RankException
ArrayTypeMismatchException
InvalidCastException
SynchronizationLockException
-
Exit
public static void Exit(CancelEventArgs e) throws java.lang.Throwable, PlatformNotSupportedException, LockRecursionException, ArgumentException, WaitHandleCannotBeOpenedException, NullReferenceException, NotSupportedException, OutOfMemoryException, ObjectDisposedException, ArgumentNullException, AbandonedMutexException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, RankException, ArrayTypeMismatchException, InvalidCastException, SynchronizationLockException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
LockRecursionException
ArgumentException
WaitHandleCannotBeOpenedException
NullReferenceException
NotSupportedException
OutOfMemoryException
ObjectDisposedException
ArgumentNullException
AbandonedMutexException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidOperationException
RankException
ArrayTypeMismatchException
InvalidCastException
SynchronizationLockException
-
ExitThread
public static void ExitThread() throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, Win32Exception
-
OnThreadException
public static void OnThreadException(NetException t) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, Win32Exception, NotSupportedException, ArgumentOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException, CultureNotFoundException, NullReferenceException, FormatException, InvalidEnumArgumentException, SynchronizationLockException, ObjectDisposedException, MulticastNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
Win32Exception
NotSupportedException
ArgumentOutOfRangeException
ArrayTypeMismatchException
OutOfMemoryException
CultureNotFoundException
NullReferenceException
FormatException
InvalidEnumArgumentException
SynchronizationLockException
ObjectDisposedException
MulticastNotSupportedException
-
RaiseIdle
public static void RaiseIdle(EventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
-
RemoveMessageFilter
public static void RemoveMessageFilter(IMessageFilter value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
Restart
public static void Restart() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, InvalidCastException, OutOfMemoryException, OverflowException, InvalidOperationException, FormatException, LockRecursionException, ObjectDisposedException, AbandonedMutexException, SynchronizationLockException, AggregateException, Win32Exception, KeyNotFoundException, CryptographicException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
ArgumentNullException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
InvalidCastException
OutOfMemoryException
OverflowException
InvalidOperationException
FormatException
LockRecursionException
ObjectDisposedException
AbandonedMutexException
SynchronizationLockException
AggregateException
Win32Exception
KeyNotFoundException
CryptographicException
-
Run
public static void Run() throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, MulticastNotSupportedException, CultureNotFoundException, NotSupportedException, ObjectDisposedException, ArgumentOutOfRangeException, Win32Exception, OutOfMemoryException, OverflowException, InvalidAsynchronousStateException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
MulticastNotSupportedException
CultureNotFoundException
NotSupportedException
ObjectDisposedException
ArgumentOutOfRangeException
Win32Exception
OutOfMemoryException
OverflowException
InvalidAsynchronousStateException
-
Run
public static void Run(ApplicationContext context) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, CultureNotFoundException, NotSupportedException, ObjectDisposedException, ArgumentOutOfRangeException, MulticastNotSupportedException, Win32Exception, OutOfMemoryException, OverflowException, InvalidAsynchronousStateException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
CultureNotFoundException
NotSupportedException
ObjectDisposedException
ArgumentOutOfRangeException
MulticastNotSupportedException
Win32Exception
OutOfMemoryException
OverflowException
InvalidAsynchronousStateException
-
Run
public static void Run(Form mainForm) throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, MulticastNotSupportedException, CultureNotFoundException, NotSupportedException, ObjectDisposedException, ArgumentOutOfRangeException, Win32Exception, OutOfMemoryException, OverflowException, InvalidAsynchronousStateException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
MulticastNotSupportedException
CultureNotFoundException
NotSupportedException
ObjectDisposedException
ArgumentOutOfRangeException
Win32Exception
OutOfMemoryException
OverflowException
InvalidAsynchronousStateException
-
SetColorMode
public static void SetColorMode(SystemColorMode systemColorMode) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException, SecurityException, IOException, UnauthorizedAccessException, OverflowException, MulticastNotSupportedException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
IndexOutOfRangeException
OutOfMemoryException
SecurityException
IOException
UnauthorizedAccessException
OverflowException
MulticastNotSupportedException
Win32Exception
-
SetCompatibleTextRenderingDefault
public static void SetCompatibleTextRenderingDefault(boolean defaultValue) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException
-
SetDefaultFont
public static void SetDefaultFont(Font font) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, IndexOutOfRangeException, MissingMethodException, TargetInvocationException, OutOfMemoryException, SecurityException, IOException, UnauthorizedAccessException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
NullReferenceException
IndexOutOfRangeException
MissingMethodException
TargetInvocationException
OutOfMemoryException
SecurityException
IOException
UnauthorizedAccessException
-
SetUnhandledExceptionMode
public static void SetUnhandledExceptionMode(UnhandledExceptionMode mode, boolean threadScope) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, InvalidEnumArgumentException
-
SetUnhandledExceptionMode
public static void SetUnhandledExceptionMode(UnhandledExceptionMode mode) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, IndexOutOfRangeException, FormatException, InvalidEnumArgumentException
-
UnregisterMessageLoop
public static void UnregisterMessageLoop() throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
-
getAllowQuit
public static boolean getAllowQuit() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsDarkModeEnabled
public static boolean getIsDarkModeEnabled() throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ObjectDisposedException, CultureNotFoundException, MissingMethodException, TargetInvocationException, OutOfMemoryException, SecurityException, ArrayTypeMismatchException, IOException, UnauthorizedAccessException, OverflowException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
ObjectDisposedException
CultureNotFoundException
MissingMethodException
TargetInvocationException
OutOfMemoryException
SecurityException
ArrayTypeMismatchException
IOException
UnauthorizedAccessException
OverflowException
-
getMessageLoop
public static boolean getMessageLoop() throws java.lang.Throwable, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
-
getRenderWithVisualStyles
public static boolean getRenderWithVisualStyles() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, OutOfMemoryException, KeyNotFoundException
-
getUseVisualStyles
public static boolean getUseVisualStyles() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setUseVisualStyles
public static void setUseVisualStyles(boolean UseVisualStyles) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUseWaitCursor
public static boolean getUseWaitCursor() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setUseWaitCursor
public static void setUseWaitCursor(boolean UseWaitCursor) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
-
getCommonAppDataRegistry
public static RegistryKey getCommonAppDataRegistry() throws java.lang.Throwable, ArrayTypeMismatchException, PlatformNotSupportedException, LockRecursionException, NotSupportedException, OutOfMemoryException, ObjectDisposedException, AbandonedMutexException, SynchronizationLockException, IndexOutOfRangeException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, FileNotFoundException, UnauthorizedAccessException, ArgumentNullException, RankException, MissingMethodException, TargetInvocationException, FormatException, IOException
- Throws:
java.lang.Throwable
ArrayTypeMismatchException
PlatformNotSupportedException
LockRecursionException
NotSupportedException
OutOfMemoryException
ObjectDisposedException
AbandonedMutexException
SynchronizationLockException
IndexOutOfRangeException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
FileNotFoundException
UnauthorizedAccessException
ArgumentNullException
RankException
MissingMethodException
TargetInvocationException
FormatException
IOException
-
getUserAppDataRegistry
public static RegistryKey getUserAppDataRegistry() throws java.lang.Throwable, NotSupportedException, ArgumentException, ArrayTypeMismatchException, PlatformNotSupportedException, LockRecursionException, NullReferenceException, OutOfMemoryException, ObjectDisposedException, AbandonedMutexException, SynchronizationLockException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, FileNotFoundException, FormatException, UnauthorizedAccessException, ArgumentNullException, RankException, MissingMethodException, TargetInvocationException, IOException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArrayTypeMismatchException
PlatformNotSupportedException
LockRecursionException
NullReferenceException
OutOfMemoryException
ObjectDisposedException
AbandonedMutexException
SynchronizationLockException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
CultureNotFoundException
FileNotFoundException
FormatException
UnauthorizedAccessException
ArgumentNullException
RankException
MissingMethodException
TargetInvocationException
IOException
-
getCurrentCulture
public static CultureInfo getCurrentCulture() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException
-
setCurrentCulture
public static void setCurrentCulture(CultureInfo CurrentCulture) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, NullReferenceException, ArgumentOutOfRangeException
-
getCommonAppDataPath
public static java.lang.String getCommonAppDataPath() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException, FormatException, LockRecursionException, OutOfMemoryException, ObjectDisposedException, AbandonedMutexException, SynchronizationLockException, FileNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
IndexOutOfRangeException
OverflowException
FormatException
LockRecursionException
OutOfMemoryException
ObjectDisposedException
AbandonedMutexException
SynchronizationLockException
FileNotFoundException
-
getCompanyName
public static java.lang.String getCompanyName() throws java.lang.Throwable, PlatformNotSupportedException, LockRecursionException, ArgumentException, WaitHandleCannotBeOpenedException, NullReferenceException, NotSupportedException, OutOfMemoryException, ObjectDisposedException, ArgumentNullException, AbandonedMutexException, SynchronizationLockException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, FileNotFoundException, FormatException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
LockRecursionException
ArgumentException
WaitHandleCannotBeOpenedException
NullReferenceException
NotSupportedException
OutOfMemoryException
ObjectDisposedException
ArgumentNullException
AbandonedMutexException
SynchronizationLockException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
CultureNotFoundException
FileNotFoundException
FormatException
-
getExecutablePath
public static java.lang.String getExecutablePath() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getLocalUserAppDataPath
public static java.lang.String getLocalUserAppDataPath() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException, FormatException, LockRecursionException, OutOfMemoryException, ObjectDisposedException, AbandonedMutexException, SynchronizationLockException, FileNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
IndexOutOfRangeException
OverflowException
FormatException
LockRecursionException
OutOfMemoryException
ObjectDisposedException
AbandonedMutexException
SynchronizationLockException
FileNotFoundException
-
getProductName
public static java.lang.String getProductName() throws java.lang.Throwable, PlatformNotSupportedException, LockRecursionException, ArgumentException, WaitHandleCannotBeOpenedException, NullReferenceException, NotSupportedException, OutOfMemoryException, ObjectDisposedException, ArgumentNullException, AbandonedMutexException, SynchronizationLockException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, FileNotFoundException, FormatException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
LockRecursionException
ArgumentException
WaitHandleCannotBeOpenedException
NullReferenceException
NotSupportedException
OutOfMemoryException
ObjectDisposedException
ArgumentNullException
AbandonedMutexException
SynchronizationLockException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
CultureNotFoundException
FileNotFoundException
FormatException
-
getProductVersion
public static java.lang.String getProductVersion() throws java.lang.Throwable, PlatformNotSupportedException, LockRecursionException, ArgumentException, WaitHandleCannotBeOpenedException, NullReferenceException, NotSupportedException, OutOfMemoryException, ObjectDisposedException, ArgumentNullException, AbandonedMutexException, SynchronizationLockException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, CultureNotFoundException, FileNotFoundException, FormatException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
LockRecursionException
ArgumentException
WaitHandleCannotBeOpenedException
NullReferenceException
NotSupportedException
OutOfMemoryException
ObjectDisposedException
ArgumentNullException
AbandonedMutexException
SynchronizationLockException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
CultureNotFoundException
FileNotFoundException
FormatException
-
getSafeTopLevelCaptionFormat
public static java.lang.String getSafeTopLevelCaptionFormat() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException
-
setSafeTopLevelCaptionFormat
public static void setSafeTopLevelCaptionFormat(java.lang.String SafeTopLevelCaptionFormat) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getStartupPath
public static java.lang.String getStartupPath() throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException
-
getUserAppDataPath
public static java.lang.String getUserAppDataPath() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OverflowException, FormatException, LockRecursionException, OutOfMemoryException, ObjectDisposedException, AbandonedMutexException, SynchronizationLockException, FileNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
IndexOutOfRangeException
OverflowException
FormatException
LockRecursionException
OutOfMemoryException
ObjectDisposedException
AbandonedMutexException
SynchronizationLockException
FileNotFoundException
-
getOpenForms
public static FormCollection getOpenForms() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getHighDpiMode
public static HighDpiMode getHighDpiMode() throws java.lang.Throwable, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, NullReferenceException, NotSupportedException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
NullReferenceException
NotSupportedException
-
getCurrentInputLanguage
public static InputLanguage getCurrentInputLanguage() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
-
setCurrentInputLanguage
public static void setCurrentInputLanguage(InputLanguage CurrentInputLanguage) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, NotSupportedException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
getColorMode
public static SystemColorMode getColorMode() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getSystemColorMode
public static SystemColorMode getSystemColorMode() throws java.lang.Throwable, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, ObjectDisposedException, NullReferenceException, NotSupportedException, RankException, ArrayTypeMismatchException, MissingMethodException, TargetInvocationException, OutOfMemoryException, SecurityException, IOException, UnauthorizedAccessException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
ObjectDisposedException
NullReferenceException
NotSupportedException
RankException
ArrayTypeMismatchException
MissingMethodException
TargetInvocationException
OutOfMemoryException
SecurityException
IOException
UnauthorizedAccessException
OverflowException
-
getVisualStyleState
public static VisualStyleState getVisualStyleState() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setVisualStyleState
public static void setVisualStyleState(VisualStyleState VisualStyleState) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, InvalidOperationException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
InvalidOperationException
-
-