I am currently trying to use Snippet Designer to speed up my development. I am either missing how to best leverage it or missing a feature that I need. I am looking for assistance accomplishing the following through a snippet.
I create many Tables that follow a pattern and want to somewhat automate it.
Example SP
CREATE TABLE [dbo].[ObjectTable]
(
ObjectID [int] IDENTITY NOT NULL,
ObjectName [nvarchar](256) NOT NULL
)
What I'd like to be able to do is replace Object with the name of the table.
Example



So I would like to pull the tables name, or even if I can just select Person text and then insert the snippet and use the selected text. Is this possible at all?