请问delphi中的type自定义类型在什么地方定义,小弟我如何找不到

请教delphi中的type自定义类型在什么地方定义,我怎么找不到请教delphi中的type自定义类型在什么地方定义,

请教delphi中的type自定义类型在什么地方定义,我怎么找不到
请教delphi中的type自定义类型在什么地方定义,我怎么找不到,可不可以发张图让我看看

[解决办法]

Delphi(Pascal) code
type  TForm1 = class(TForm)  private    { Private declarations }  public    { Public declarations }  end;type  mytype=array of string;var  Form1: TForm1;implementationvar v:mytype;{$R *.dfm}