Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ToolboxItemType
Type
? System.ComponentModel.ToolboxItemAttribute.ToolboxItemType
get
Definition at line
19
of file
ToolboxItemAttribute.cs
.
20
{
21
get
22
{
23
if
(
_toolboxItemType
==
null
&&
_toolboxItemTypeName
!=
null
)
24
{
25
try
26
{
27
_toolboxItemType
=
Type
.GetType(
_toolboxItemTypeName
, throwOnError: true);
28
}
29
catch
(Exception innerException)
30
{
31
throw
new
ArgumentException
(
System
.
SR
.
Format
(
System
.
SR
.
ToolboxItemAttributeFailedGetType
,
_toolboxItemTypeName
), innerException);
32
}
33
}
34
return
_toolboxItemType
;
35
}
36
}
System.ComponentModel.ToolboxItemAttribute._toolboxItemTypeName
readonly string _toolboxItemTypeName
Definition
ToolboxItemAttribute.cs:12
System.ComponentModel.ToolboxItemAttribute._toolboxItemType
Type _toolboxItemType
Definition
ToolboxItemAttribute.cs:9
System.SR.Format
static string Format(string resourceFormat, object p1)
Definition
SR.cs:118
System.SR.ToolboxItemAttributeFailedGetType
static string ToolboxItemAttributeFailedGetType
Definition
SR.cs:66
System.SR
Definition
SR.cs:7
System.Data.Common.StorageType.Type
@ Type
System.Xml.ExceptionType.ArgumentException
@ ArgumentException
System
Definition
BlockingCollection.cs:8
System
ComponentModel
ToolboxItemAttribute
Generated by
1.10.0