Type: BCS.Sym3.IActionDisplayMessage

Action: this action will pops up a text in a message box

Properties


MessageType

  • Description: Gets or sets the type of the message (error, warning or information). An image will be displayed in the window based on the type.
  • Type: ActionDisplayMessageType
  • Access: Read and Write
  • Example:
This example shows you every possibility to set the message type:

            var myAction = ....;
            myAction.MessageType = BCS.Sym3.ActionDisplayMessageType.None;
            myAction.MessageType = BCS.Sym3.ActionDisplayMessageType.Error;
            myAction.MessageType = BCS.Sym3.ActionDisplayMessageType.Warning;
            myAction.MessageType = BCS.Sym3.ActionDisplayMessageType.Information;
            

Name

  • Description: Gets the name of the action
  • Type: String
  • Access: Read

Text

  • Description: Gets or sets the text that will be displayed
  • Type: String
  • Access: Read and Write

Title

  • Description: Gets or sets the title of the window that will pop up
  • Type: String
  • Access: Read and Write

Methods


Compare(BCS.Sym3.IBaseAction)

Compare the action between two project


Execute(System.Object,BCS.Sym3.ISym3BaseEditor,BCS.Sym3.ISym3Project)

Executes the action. SYm3 Designer/Integrator only

  • Parameters:
    • sender: the sender means ‘who called this action’
    • editor: editor
    • project: current project

Execute(System.Object,BCS.Sym3.Operator.Runtime.ISym3OperatorClient,BCS.Sym3.IPermissionSet)

Executes the action. Sym3 Operator only

  • Parameters:
    • sender: the sender means ‘who called this action’
    • client: client is a reference to the client application

FromXmlString(BCS.IToolXmlToObjectHelper)

Init object from IToolXmlToObjectHelper. All properties found in the RootElement of IToolXmlToObjectHelper will be set with the value in the rootElement

  • Parameters:
    • xmlHelperObj: xmlHelperObj IToolXmlToObjectHelper

FromXmlString(System.String)

Init object from xml. All properties found in the xml will be set with the value in the xml file

  • Parameters:
    • xmlText: Xml string

FromXmlString(System.Xml.Linq.XElement)

Init object from root element. All properties found in the XElement will be set with the value in the XElement

  • Parameters:
    • objXml: objXml XElement

ToXmlString

Converts the object in an xml string

  • Returns:
    • the string that contains xml version of the object