コード例 #1
0
 public static void CopyBytesProperty(PropertyContext pc, TableContext tc, int rowIndex, PropertyID propertyID)
 {
     byte[] value = pc.GetBytesProperty(propertyID);
     if (value != null && tc.ContainsPropertyColumn(propertyID, PropertyTypeName.PtypBinary))
     {
         tc.SetBytesProperty(rowIndex, propertyID, value);
     }
 }