File: exD6.block

package info (click to toggle)
msc-generator 8.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180,484 kB
  • sloc: cpp: 129,931; yacc: 23,655; ansic: 7,464; sh: 5,026; makefile: 948
file content (11 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
##Running style
##running style apply
##During the parsing of the block diagram Msc-generator maintains a "running style" that always applied on any element. By default it is empty. In fact there are two running styles, one for blocks and one for arrows. You can change both running styles by the 'use' command and only one of them with the 'blocks use' or 'arrows use' commands. Any changes made to the running styles follow scoping and will last only until the next closing brace.
box A: First;
box B: Second;
B, C [fill.color=lgray];
blocks use line.type=double;
arrows use line.width=3;
C->D;
use color=red;
D->E;