 | InspectorTypeTableTryGetInspectorType Method |
Tries to get the inspector type for the specified type.
Namespace: Slash.ECS.Inspector.DataAssembly: Slash.ECS (in Slash.ECS.dll) Version: 1.0.6018.40178
Syntaxpublic bool TryGetInspectorType(
Type type,
out InspectorType inspectorType
)
Public Function TryGetInspectorType (
type As Type,
<OutAttribute> ByRef inspectorType As InspectorType
) As Boolean
public:
bool TryGetInspectorType(
Type^ type,
[OutAttribute] InspectorType^% inspectorType
)
member TryGetInspectorType :
type : Type *
inspectorType : InspectorType byref -> bool
Parameters
- type
- Type: SystemType
Type to get the inspector type for. - inspectorType
- Type: Slash.ECS.Inspector.DataInspectorType
Inspector type for the specified type.
Return Value
Type:
BooleanTrue if inspector type for type was found; otherwise, false.
See Also