Go to: Synopsis. Return value. MEL examples.

Synopsis

string interToUI(string $interCapName)

Takes a string in interCaps form, and returns a "UI" string. Allows things that are called something like graphEditor to be shown to the user as "Graph Editor"

Return value

None

Arguments

Variable Name Variable Type Description
$interCapNamestringName to convert, assumed to be in interCaps.

MEL examples

  interToUI( "graphEditor" );
  // Result : Graph Editor //
  interToUI( "heffalump" );
  // Result : Heffalump //
  interToUI( "AndWoozles" );
  // Result : And Woozles //