 | InspectorUtilsCollectInspectorProperties Method |
Returns inspector data for all inspectable properties of the specified type.
Namespace: Slash.ECS.Inspector.UtilsAssembly: Slash.ECS (in Slash.ECS.dll) Version: 1.0.6018.40178
Syntaxpublic static List<InspectorPropertyAttribute> CollectInspectorProperties(
Type inspectorType,
ref Dictionary<InspectorPropertyAttribute, InspectorConditionalPropertyAttribute> conditionalInspectors
)
Public Shared Function CollectInspectorProperties (
inspectorType As Type,
ByRef conditionalInspectors As Dictionary(Of InspectorPropertyAttribute, InspectorConditionalPropertyAttribute)
) As List(Of InspectorPropertyAttribute)
public:
static List<InspectorPropertyAttribute^>^ CollectInspectorProperties(
Type^ inspectorType,
Dictionary<InspectorPropertyAttribute^, InspectorConditionalPropertyAttribute^>^% conditionalInspectors
)
static member CollectInspectorProperties :
inspectorType : Type *
conditionalInspectors : Dictionary<InspectorPropertyAttribute, InspectorConditionalPropertyAttribute> byref -> List<InspectorPropertyAttribute>
Parameters
- inspectorType
- Type: SystemType
Type to get inspector data for. - conditionalInspectors
- Type: System.Collections.GenericDictionaryInspectorPropertyAttribute, InspectorConditionalPropertyAttribute
Dictionary to be filled with conditions for inspectors to be shown.
Return Value
Type:
ListInspectorPropertyAttributeInspector data for all inspectable properties of the specified type.
See Also