There is but there is really no point in it.
A view a virtual table. So if you need the data in the view sorted, sort in the select statement.
As in.
select * from myview order by somefield
If you REALLY want to sort in the view itself, and you are running 2000. Add 'top 100 percent' to the select clause which will then allow you to add an order clause.