Returns all properties of the layer as a list of Name=Value pairs.
Names will be drawn from the TIELayer Property Constants. Changes made to the list can be applied using SetProperties.
// Save properties of the current layer to a file ss := TStringList.create(); ImageEnView1.CurrentLayer.GetProperties( ss ); ss.SaveToFile( 'D:\CurrentLayer.txt' ); ss.Free();