コード例 #1
0
        public void Add(object data, IPDFDataSource source, IPDFBindableComponent comp)
        {
            BindingAction action = new BindingAction(data, source, comp);

            this.Add(action);
        }
コード例 #2
0
 public BindingAction(object data, IPDFDataSource source, IPDFBindableComponent comp)
 {
     this.Data      = data;
     this.Component = comp;
     this.Source    = source;
 }