Package system.windows.controls
Class ToolTipService
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.windows.controls.ToolTipService
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class ToolTipService extends NetObject
The base .NET class managing System.Windows.Controls.ToolTipService, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.Controls.ToolTipService
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: PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35static java.lang.String
assemblyShortName
Assembly name: PresentationFrameworkstatic java.lang.String
className
Qualified class name: System.Windows.Controls.ToolTipServicestatic org.mases.jcobridge.JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description ToolTipService()
ToolTipService(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
AddToolTipClosingHandler(DependencyObject element, ToolTipEventHandler handler)
static void
AddToolTipOpeningHandler(DependencyObject element, ToolTipEventHandler handler)
static ToolTipService
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoToolTipService
, a cast assert is made to check if types are compatible.static int
GetBetweenShowDelay(DependencyObject element)
static boolean
GetHasDropShadow(DependencyObject element)
static double
GetHorizontalOffset(DependencyObject element)
static int
GetInitialShowDelay(DependencyObject element)
static boolean
GetIsEnabled(DependencyObject element)
static boolean
GetIsOpen(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 objectorg.mases.jcobridge.JCType
getJCOType()
Returns the instantiated class Typestatic PlacementMode
GetPlacement(DependencyObject element)
static Rect
GetPlacementRectangle(DependencyObject element)
static UIElement
GetPlacementTarget(DependencyObject element)
static int
GetShowDuration(DependencyObject element)
static boolean
GetShowOnDisabled(DependencyObject element)
static NetObject
GetToolTip(DependencyObject element)
static double
GetVerticalOffset(DependencyObject element)
static void
RemoveToolTipClosingHandler(DependencyObject element, ToolTipEventHandler handler)
static void
RemoveToolTipOpeningHandler(DependencyObject element, ToolTipEventHandler handler)
static void
SetBetweenShowDelay(DependencyObject element, int value)
static void
SetHasDropShadow(DependencyObject element, boolean value)
static void
SetHorizontalOffset(DependencyObject element, double value)
static void
SetInitialShowDelay(DependencyObject element, int value)
static void
SetIsEnabled(DependencyObject element, boolean value)
void
setJCOInstance(org.mases.jcobridge.JCObject instance)
static void
SetPlacement(DependencyObject element, PlacementMode value)
static void
SetPlacementRectangle(DependencyObject element, Rect value)
static void
SetPlacementTarget(DependencyObject element, UIElement value)
static void
SetShowDuration(DependencyObject element, int value)
static void
SetShowOnDisabled(DependencyObject element, boolean value)
static void
SetToolTip(DependencyObject element, NetObject value)
static void
SetVerticalOffset(DependencyObject element, double value)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: PresentationFramework- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Windows.Controls.ToolTipService- See Also:
- Constant Field Values
-
classType
public static org.mases.jcobridge.JCType classType
The type managed from JCOBridge. SeeJCType
-
-
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(org.mases.jcobridge.JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public org.mases.jcobridge.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 ToolTipService cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoToolTipService
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
ToolTipService
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetHasDropShadow
public static boolean GetHasDropShadow(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetIsEnabled
public static boolean GetIsEnabled(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetIsOpen
public static boolean GetIsOpen(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetShowOnDisabled
public static boolean GetShowOnDisabled(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetHorizontalOffset
public static double GetHorizontalOffset(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetVerticalOffset
public static double GetVerticalOffset(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetBetweenShowDelay
public static int GetBetweenShowDelay(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetInitialShowDelay
public static int GetInitialShowDelay(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetShowDuration
public static int GetShowDuration(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetToolTip
public static NetObject GetToolTip(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetPlacement
public static PlacementMode GetPlacement(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetPlacementRectangle
public static Rect GetPlacementRectangle(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
GetPlacementTarget
public static UIElement GetPlacementTarget(DependencyObject element) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
AddToolTipClosingHandler
public static void AddToolTipClosingHandler(DependencyObject element, ToolTipEventHandler handler) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
AddToolTipOpeningHandler
public static void AddToolTipOpeningHandler(DependencyObject element, ToolTipEventHandler handler) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
RemoveToolTipClosingHandler
public static void RemoveToolTipClosingHandler(DependencyObject element, ToolTipEventHandler handler) throws java.lang.Throwable, ArgumentNullException, FormatException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
RemoveToolTipOpeningHandler
public static void RemoveToolTipOpeningHandler(DependencyObject element, ToolTipEventHandler handler) throws java.lang.Throwable, ArgumentNullException, FormatException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
SetBetweenShowDelay
public static void SetBetweenShowDelay(DependencyObject element, int value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetHasDropShadow
public static void SetHasDropShadow(DependencyObject element, boolean value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetHorizontalOffset
public static void SetHorizontalOffset(DependencyObject element, double value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetInitialShowDelay
public static void SetInitialShowDelay(DependencyObject element, int value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetIsEnabled
public static void SetIsEnabled(DependencyObject element, boolean value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetPlacement
public static void SetPlacement(DependencyObject element, PlacementMode value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetPlacementRectangle
public static void SetPlacementRectangle(DependencyObject element, Rect value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetPlacementTarget
public static void SetPlacementTarget(DependencyObject element, UIElement value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetShowDuration
public static void SetShowDuration(DependencyObject element, int value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetShowOnDisabled
public static void SetShowOnDisabled(DependencyObject element, boolean value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetToolTip
public static void SetToolTip(DependencyObject element, NetObject value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetVerticalOffset
public static void SetVerticalOffset(DependencyObject element, double value) throws java.lang.Throwable, ArgumentNullException, MissingManifestResourceException, NotImplementedException, ArgumentException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
-