This class is used to display a custom confirmation MessageBox.

Namespace: Ico.Gwx
Assembly: GwxRuntimeCore (in GwxRuntimeCore.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public sealed class GwxCustomConfirmMessage : GwxCustomMessage
Visual Basic
Public NotInheritable Class GwxCustomConfirmMessage _
	Inherits GwxCustomMessage
JScript
public final class GwxCustomConfirmMessage extends GwxCustomMessage

Remarks

The Text and Caption properties may include variable items using format identifiers specified as:

{numeric-variable-id} (for instance, {0} or {1}).

Numeric variable id values are defined as follows:

  • 0 = Tag Name (the tag name of the data item being written to)
  • 1 = New Value (the new value to be written)
  • 2 = Old Value (the old value to be overwritten)
  • 3 = Dynamic Name (this name of the GwxDynamic object that invoked this confirmation message)
  • 4 = Dynamic Description (this description of the GwxDynamic object that invoked this confirmation message)
  • 5 = Target Name (this name of graphical object that invoked this confirmation message)
  • 6 = Target Description (this description of the graphical object that invoked this confirmation message)

To include a literal '{' or '}' character, use {{ or }}.

Optional numeric formatting can also be included, such as:

  • {1:X} = Hexadecimal formatting
  • {1:E} = Scientific notation
  • {1:N} = Number with default number of decimal places (based on regional settings)
  • {1:N3} = Number with 3 decimal places

See Format(String, Object) for more information about message formatting.

Inheritance Hierarchy

System..::..Object
  System.Windows.Threading..::..DispatcherObject
    System.Windows..::..DependencyObject
      System.Windows..::..Freezable
        FreezableFilteredCustomTypeDescriptorBase
          Ico.Gwx..::..GwxCustomMessage
            Ico.Gwx..::..GwxCustomConfirmMessage

See Also