예제 #1
0
파일: KeeICE.cs 프로젝트: hathagat/KeeFox
 public KPFormField(string name, string displayName, string value, KeeICE.KPlib.formFieldType type, string id, int page)
 {
     this.name = name;
     this.displayName = displayName;
     this.value = value;
     this.type = type;
     this.id = id;
     this.page = page;
 }
예제 #2
0
파일: KeeICE.cs 프로젝트: hathagat/KeeFox
 public void read__(IceInternal.BasicStream is__)
 {
     name = is__.readString();
     displayName = is__.readString();
     value = is__.readString();
     type = (KeeICE.KPlib.formFieldType)is__.readByte(6);
     id = is__.readString();
     page = is__.readInt();
 }