コード例 #1
0
 public override void Initialize()
 {
     base.Initialize();
     this._BusinessDocumentCode = 0;
     this._AttributeValues      = new DocumentPropValues();
     this._DocumentType         = new DocumentType();
     this._Activities           = new Activities();
     this._OwnerOrgan           = new OrgUnit();
     this._CreatorPerson        = new WFPerson();
 }
コード例 #2
0
        public override object  Clone(string sNodeName)
        {
            DocumentPropValues Col = new  DocumentPropValues();

            foreach (DocumentPropValue objMember in this)
            {
                Col.Add((DocumentPropValue)objMember.Clone(sNodeName));
            }
            return(Col);
        }
コード例 #3
0
ファイル: DocumentProperty.cs プロジェクト: code-mtnit/WPFSM
 public override void Initialize()
 {
     base.Initialize();
     this._ValidationPattern     = "";
     this._OrderInDocument       = 0;
     this._ObjectAttribute       = "";
     this._ViewCategory          = "";
     this._DataEntryMask         = "";
     this._CultureDescription    = "";
     this._IsLimitted            = SbnBoolean.OutOfValue;
     this._PropertyType          = PropertyType.OutOfValue;
     this._BasicInfoLink         = new BasicInfo();
     this._MesurementType        = new BasicInfoDetail();
     this._CoDocumentType        = new DocumentType();
     this._IsPreDefine           = SbnBoolean.OutOfValue;
     this._Values                = new DocumentPropValues();
     this._IsListView            = SbnBoolean.OutOfValue;
     this._ReferenceDocumentType = new DocumentType();
     this._IsVisible             = SbnBoolean.OutOfValue;
     this._IsMandatory           = SbnBoolean.OutOfValue;
 }