Library | Package Java Toolkit

Interface MessageDialogOptions

package com.ptc.pfc.pfcUI;

public interface MessageDialogOptions
  extends jxobject



Description

This class specifies the options for a message dialog.



Method Summary
/*optional*/ MessageButtonsGetButtons ()
    Get method for attribute "Buttons"
    An array of possible button identifiers to show in the dialog. If null, the dialog will include only an OK button.
/*optional*/ MessageButtonGetDefaultButton ()
    Get method for attribute "DefaultButton"
    The identifier of the default button. If null, the default button will be the OK button.
/*optional*/ StringGetDialogLabel ()
    Get method for attribute "DialogLabel"
    The text to display as the dialog title. If null, the dialog title will be "Info" regardless of the language used by Creo Parametric.
/*optional*/ MessageDialogTypeGetMessageDialogType ()
    Get method for attribute "MessageDialogType"
     The type of icon to show with the message dialog. If null, the dialog will show the Info icon.
voidSetButtons ( /*optional*/ MessageButtons value)
    Set method for attribute "Buttons"
    An array of possible button identifiers to show in the dialog. If null, the dialog will include only an OK button.
voidSetDefaultButton ( /*optional*/ MessageButton value)
    Set method for attribute "DefaultButton"
    The identifier of the default button. If null, the default button will be the OK button.
voidSetDialogLabel ( /*optional*/ String value)
    Set method for attribute "DialogLabel"
    The text to display as the dialog title. If null, the dialog title will be "Info" regardless of the language used by Creo Parametric.
voidSetMessageDialogType ( /*optional*/ MessageDialogType value)
    Set method for attribute "MessageDialogType"
     The type of icon to show with the message dialog. If null, the dialog will show the Info icon.

Method Detail

GetMessageDialogType/SetMessageDialogType

/*optional*/ MessageDialogTypeGetMessageDialogType ()
voidSetMessageDialogType ( /*optional*/ MessageDialogType value)


     The type of icon to show with the message dialog. If null, the dialog will show the Info icon.
Manual References:
Session Objects: Writing a Message Using a Message Pop-up Dialog Box



GetDialogLabel/SetDialogLabel

/*optional*/ StringGetDialogLabel ()
voidSetDialogLabel ( /*optional*/ String value)


    The text to display as the dialog title. If null, the dialog title will be "Info" regardless of the language used by Creo Parametric.
Manual References:
Session Objects: Writing a Message Using a Message Pop-up Dialog Box



GetButtons/SetButtons

/*optional*/ MessageButtonsGetButtons ()
voidSetButtons ( /*optional*/ MessageButtons value)


    An array of possible button identifiers to show in the dialog. If null, the dialog will include only an OK button.
Manual References:
Session Objects: Writing a Message Using a Message Pop-up Dialog Box



GetDefaultButton/SetDefaultButton

/*optional*/ MessageButtonGetDefaultButton ()
voidSetDefaultButton ( /*optional*/ MessageButton value)


    The identifier of the default button. If null, the default button will be the OK button.
Manual References:
Session Objects: Writing a Message Using a Message Pop-up Dialog Box