public PropertyPtrRow CreatePropertyPtrRow(uint _property)
        {
            PropertyPtrRow row = new PropertyPtrRow();

            row.Property = _property;
            return(row);
        }
 public override void VisitPropertyPtrRow(PropertyPtrRow row)
 {
     row.Property = ReadByIndexSize(GetIndexSize(PropertyTable.RId));
 }
 public override void VisitPropertyPtrRow(PropertyPtrRow row)
 {
     WriteTablePointer(row.Property, PropertyTable.RId);
 }
Exemple #4
0
		public override void VisitPropertyPtrRow (PropertyPtrRow row)
		{
			WriteTablePointer (row.Property, PropertyTable.RId);
		}
Exemple #5
0
		public PropertyPtrRow CreatePropertyPtrRow (uint _property)
		{
			PropertyPtrRow row = new PropertyPtrRow ();
			row.Property = _property;
			return row;
		}
 public override void VisitPropertyPtrRow(PropertyPtrRow row)
 {
     row.Property = ReadByIndexSize (GetIndexSize (PropertyTable.RId));
 }