19 using System.ComponentModel;
21 namespace TraceLab.Components.Library.Helpers
23 [Component(Name =
"Integer Writer",
24 Description =
"This components outputs specified integer to the Workspace.",
27 ConfigurationType=typeof(IntegerWriterConfig))]
28 [IOSpec(IOSpecType.Output,
"Integer", typeof(
int))]
29 [Tag(
"Helper components")]
35 Configuration = config;
42 Workspace.Store(
"Integer", config.OutputInteger);
48 [DisplayName(
"Output integer")]
49 public int OutputInteger