Loads sold listing list for a given lat/long into current object

Namespace:  CWS.Common.NDXInterface.NDX
Assembly:  NDX (in NDX.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public void LoadSoldList(
	double lat,
	double lng,
	int radius,
	long minPrice,
	long maxPrice,
	DateTime startDate,
	DateTime endDate,
	bool orderByProximity
)
Visual Basic (Declaration)
Public Sub LoadSoldList ( _
	lat As Double, _
	lng As Double, _
	radius As Integer, _
	minPrice As Long, _
	maxPrice As Long, _
	startDate As DateTime, _
	endDate As DateTime, _
	orderByProximity As Boolean _
)
Visual C++
public:
void LoadSoldList(
	double lat, 
	double lng, 
	int radius, 
	long long minPrice, 
	long long maxPrice, 
	DateTime startDate, 
	DateTime endDate, 
	bool orderByProximity
)

Parameters

lat
Type: System..::.Double
Latitude of point
lng
Type: System..::.Double
Longitude of point
radius
Type: System..::.Int32
In miles from given lat/long
minPrice
Type: System..::.Int64
Min price of sold listings to look for
maxPrice
Type: System..::.Int64
Max price of sold listings to look for
startDate
Type: System..::.DateTime
Look for sold listings after this date
endDate
Type: System..::.DateTime
Look for sold listings before this date
orderByProximity
Type: System..::.Boolean
If true then order by proximity to point, otherwise order by sale date

See Also