Package system.windows.automation
Class AutomationProperties
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.windows.automation.AutomationProperties
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class AutomationProperties extends NetObject
The base .NET class managing System.Windows.Automation.AutomationProperties, PresentationCore, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.Automation.AutomationProperties
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: PresentationCore, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35static java.lang.String
assemblyShortName
Assembly name: PresentationCorestatic java.lang.String
className
Qualified class name: System.Windows.Automation.AutomationPropertiesstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description AutomationProperties()
AutomationProperties(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AutomationProperties
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoAutomationProperties
, a cast assert is made to check if types are compatible.static java.lang.String
GetAcceleratorKey(DependencyObject element)
static java.lang.String
GetAccessKey(DependencyObject element)
static java.lang.String
GetAutomationId(DependencyObject element)
static AutomationHeadingLevel
GetHeadingLevel(DependencyObject element)
static java.lang.String
GetHelpText(DependencyObject element)
static boolean
GetIsColumnHeader(DependencyObject element)
static boolean
GetIsDialog(DependencyObject element)
static IsOffscreenBehavior
GetIsOffscreenBehavior(DependencyObject element)
static boolean
GetIsRequiredForForm(DependencyObject element)
static boolean
GetIsRowHeader(DependencyObject element)
static java.lang.String
GetItemStatus(DependencyObject element)
static java.lang.String
GetItemType(DependencyObject element)
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 UIElement
GetLabeledBy(DependencyObject element)
static AutomationLiveSetting
GetLiveSetting(DependencyObject element)
static java.lang.String
GetName(DependencyObject element)
static int
GetPositionInSet(DependencyObject element)
static int
GetSizeOfSet(DependencyObject element)
static void
SetAcceleratorKey(DependencyObject element, java.lang.String value)
static void
SetAccessKey(DependencyObject element, java.lang.String value)
static void
SetAutomationId(DependencyObject element, java.lang.String value)
static void
SetHeadingLevel(DependencyObject element, AutomationHeadingLevel value)
static void
SetHelpText(DependencyObject element, java.lang.String value)
static void
SetIsColumnHeader(DependencyObject element, boolean value)
static void
SetIsDialog(DependencyObject element, boolean value)
static void
SetIsOffscreenBehavior(DependencyObject element, IsOffscreenBehavior value)
static void
SetIsRequiredForForm(DependencyObject element, boolean value)
static void
SetIsRowHeader(DependencyObject element, boolean value)
static void
SetItemStatus(DependencyObject element, java.lang.String value)
static void
SetItemType(DependencyObject element, java.lang.String value)
void
setJCOInstance(JCObject instance)
static void
SetLabeledBy(DependencyObject element, UIElement value)
static void
SetLiveSetting(DependencyObject element, AutomationLiveSetting value)
static void
SetName(DependencyObject element, java.lang.String value)
static void
SetPositionInSet(DependencyObject element, int value)
static void
SetSizeOfSet(DependencyObject element, int value)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: PresentationCore, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: PresentationCore- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Windows.Automation.AutomationProperties- 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 AutomationProperties cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoAutomationProperties
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
AutomationProperties
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetIsColumnHeader
public static boolean GetIsColumnHeader(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetIsDialog
public static boolean GetIsDialog(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetIsRequiredForForm
public static boolean GetIsRequiredForForm(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetIsRowHeader
public static boolean GetIsRowHeader(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetPositionInSet
public static int GetPositionInSet(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetSizeOfSet
public static int GetSizeOfSet(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetAcceleratorKey
public static java.lang.String GetAcceleratorKey(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetAccessKey
public static java.lang.String GetAccessKey(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetAutomationId
public static java.lang.String GetAutomationId(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetHelpText
public static java.lang.String GetHelpText(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetItemStatus
public static java.lang.String GetItemStatus(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetItemType
public static java.lang.String GetItemType(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetName
public static java.lang.String GetName(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetHeadingLevel
public static AutomationHeadingLevel GetHeadingLevel(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetLiveSetting
public static AutomationLiveSetting GetLiveSetting(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetIsOffscreenBehavior
public static IsOffscreenBehavior GetIsOffscreenBehavior(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetLabeledBy
public static UIElement GetLabeledBy(DependencyObject element) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
SetAcceleratorKey
public static void SetAcceleratorKey(DependencyObject element, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetAccessKey
public static void SetAccessKey(DependencyObject element, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetAutomationId
public static void SetAutomationId(DependencyObject element, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetHeadingLevel
public static void SetHeadingLevel(DependencyObject element, AutomationHeadingLevel value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetHelpText
public static void SetHelpText(DependencyObject element, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetIsColumnHeader
public static void SetIsColumnHeader(DependencyObject element, boolean value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetIsDialog
public static void SetIsDialog(DependencyObject element, boolean value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetIsOffscreenBehavior
public static void SetIsOffscreenBehavior(DependencyObject element, IsOffscreenBehavior value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetIsRequiredForForm
public static void SetIsRequiredForForm(DependencyObject element, boolean value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetIsRowHeader
public static void SetIsRowHeader(DependencyObject element, boolean value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetItemStatus
public static void SetItemStatus(DependencyObject element, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetItemType
public static void SetItemType(DependencyObject element, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetLabeledBy
public static void SetLabeledBy(DependencyObject element, UIElement value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetLiveSetting
public static void SetLiveSetting(DependencyObject element, AutomationLiveSetting value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetName
public static void SetName(DependencyObject element, java.lang.String value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetPositionInSet
public static void SetPositionInSet(DependencyObject element, int value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
SetSizeOfSet
public static void SetSizeOfSet(DependencyObject element, int value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
-