Label

Previous Next

 

A hard-coded text label displayed in a dialog window.

 

Example

<example xmlns:pc="Processing.Command" xmlns:valuedialog="Dialog.Result" xmlns:assign="Processing.Command.Assign" pc:hideme="true">
<pc:assign-default
   valuedialog:title="Label example"
   valuedialog:textlabel = "Please press the OK button."
   />
   <pc:Dialog >
   <Form w="700" h="200">
      <Title><pc:value-of select="$valuedialog:title"/></Title>
      <Label dx="10" dy="20"><pc:value-of select="$valuedialog:textlabel"/></Label>
      <Button dx="10" dy="20" newline="true">OK</Button>
   </Form>
   </pc:Dialog>
</example>

 

See also

pc:Dialog