public static bool WriteValue( Kc.Chunk outputChunk,Parts.IProperty property)
        {
            if ( property.CurrentValue != null)
            {
                outputChunk.SetValue(property.Name, property.CurrentValue );
                return true;
            }

            return false;
        }