How to create a user defined type in SQL Server using VS2012? I tried to do the step shown in the image but no thing appears.

Also I have tried to create Type using the following code but I can not create elements of that type in my table.
CREATE TYPE CartListType AS TABLE
(
[ItemNo] INT NOT NULL,
[NameEn] NVARCHAR (150) NULL,
[Price] FLOAT (53) NULL,
[Quantity] INT NULL,
[ImageSrc] VARCHAR (100) NULL
)