Package system.windows.forms
Class TaskDialogPage
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.windows.forms.TaskDialogPage
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class TaskDialogPage extends NetObject
The base .NET class managing System.Windows.Forms.TaskDialogPage, System.Windows.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.Forms.TaskDialogPage
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=8.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.TaskDialogPagestatic org.mases.jcobridge.JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description TaskDialogPage()
TaskDialogPage(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCreated(EventHandler handler)
void
addDestroyed(EventHandler handler)
void
addHelpRequest(EventHandler handler)
static TaskDialogPage
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoTaskDialogPage
, a cast assert is made to check if types are compatible.boolean
getAllowCancel()
boolean
getAllowMinimize()
TaskDialog
getBoundDialog()
TaskDialogButtonCollection
getButtons()
java.lang.String
getCaption()
TaskDialogButton
getDefaultButton()
boolean
getEnableLinks()
TaskDialogExpander
getExpander()
TaskDialogFootnote
getFootnote()
java.lang.String
getHeading()
TaskDialogIcon
getIcon()
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 TypeTaskDialogProgressBar
getProgressBar()
TaskDialogRadioButtonCollection
getRadioButtons()
boolean
getRightToLeftLayout()
boolean
getSizeToContent()
java.lang.String
getText()
TaskDialogVerificationCheckBox
getVerification()
void
Navigate(TaskDialogPage page)
void
removeCreated(EventHandler handler)
void
removeDestroyed(EventHandler handler)
void
removeHelpRequest(EventHandler handler)
void
setAllowCancel(boolean AllowCancel)
void
setAllowMinimize(boolean AllowMinimize)
void
setBoundDialog(TaskDialog BoundDialog)
void
setButtons(TaskDialogButtonCollection Buttons)
void
setCaption(java.lang.String Caption)
void
setDefaultButton(TaskDialogButton DefaultButton)
void
setEnableLinks(boolean EnableLinks)
void
setExpander(TaskDialogExpander Expander)
void
setFootnote(TaskDialogFootnote Footnote)
void
setHeading(java.lang.String Heading)
void
setIcon(TaskDialogIcon Icon)
void
setJCOInstance(org.mases.jcobridge.JCObject instance)
void
setProgressBar(TaskDialogProgressBar ProgressBar)
void
setRadioButtons(TaskDialogRadioButtonCollection RadioButtons)
void
setRightToLeftLayout(boolean RightToLeftLayout)
void
setSizeToContent(boolean SizeToContent)
void
setText(java.lang.String Text)
void
setVerification(TaskDialogVerificationCheckBox Verification)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Windows.Forms, Version=8.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.TaskDialogPage- See Also:
- Constant Field Values
-
classType
public static org.mases.jcobridge.JCType classType
The type managed from JCOBridge. SeeJCType
-
-
Constructor Detail
-
TaskDialogPage
public TaskDialogPage(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
TaskDialogPage
public TaskDialogPage() throws java.lang.Throwable, ArgumentNullException, PlatformNotSupportedException, InvalidEnumArgumentException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentException
-
-
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 TaskDialogPage cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoTaskDialogPage
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
TaskDialogPage
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Navigate
public void Navigate(TaskDialogPage page) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
OutOfMemoryException
Win32Exception
-
getAllowCancel
public boolean getAllowCancel() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAllowCancel
public void setAllowCancel(boolean AllowCancel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
-
getAllowMinimize
public boolean getAllowMinimize() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAllowMinimize
public void setAllowMinimize(boolean AllowMinimize) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
-
getEnableLinks
public boolean getEnableLinks() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setEnableLinks
public void setEnableLinks(boolean EnableLinks) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getRightToLeftLayout
public boolean getRightToLeftLayout() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setRightToLeftLayout
public void setRightToLeftLayout(boolean RightToLeftLayout) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
-
getSizeToContent
public boolean getSizeToContent() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSizeToContent
public void setSizeToContent(boolean SizeToContent) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
-
getCaption
public java.lang.String getCaption() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setCaption
public void setCaption(java.lang.String Caption) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException
-
getHeading
public java.lang.String getHeading() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setHeading
public void setHeading(java.lang.String Heading) throws java.lang.Throwable, ArgumentException, ObjectDisposedException, InvalidOperationException
- Throws:
java.lang.Throwable
ArgumentException
ObjectDisposedException
InvalidOperationException
-
getText
public java.lang.String getText() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setText
public void setText(java.lang.String Text) throws java.lang.Throwable, ArgumentException, ObjectDisposedException, InvalidOperationException
- Throws:
java.lang.Throwable
ArgumentException
ObjectDisposedException
InvalidOperationException
-
getBoundDialog
public TaskDialog getBoundDialog() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setBoundDialog
public void setBoundDialog(TaskDialog BoundDialog) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDefaultButton
public TaskDialogButton getDefaultButton() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDefaultButton
public void setDefaultButton(TaskDialogButton DefaultButton) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getButtons
public TaskDialogButtonCollection getButtons() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setButtons
public void setButtons(TaskDialogButtonCollection Buttons) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getExpander
public TaskDialogExpander getExpander() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setExpander
public void setExpander(TaskDialogExpander Expander) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getFootnote
public TaskDialogFootnote getFootnote() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setFootnote
public void setFootnote(TaskDialogFootnote Footnote) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getIcon
public TaskDialogIcon getIcon() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setIcon
public void setIcon(TaskDialogIcon Icon) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getProgressBar
public TaskDialogProgressBar getProgressBar() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setProgressBar
public void setProgressBar(TaskDialogProgressBar ProgressBar) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getRadioButtons
public TaskDialogRadioButtonCollection getRadioButtons() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setRadioButtons
public void setRadioButtons(TaskDialogRadioButtonCollection RadioButtons) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getVerification
public TaskDialogVerificationCheckBox getVerification() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setVerification
public void setVerification(TaskDialogVerificationCheckBox Verification) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
addCreated
public void addCreated(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeCreated
public void removeCreated(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addDestroyed
public void addDestroyed(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeDestroyed
public void removeDestroyed(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addHelpRequest
public void addHelpRequest(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeHelpRequest
public void removeHelpRequest(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-