In query analyzer, you can use SP_COLUMNS [table name] to get a list of all the columns of a table, along with all the properties of those columns.
I would recommend using "results in grid" to see the results.
Or for far more details about your table, you could use SP_HELP [table name]. This would give you several results about the table.
But I believe SP_COLUMNS will answer your question.