EdgeTypeFindProperty Method |
Gets the property type given a property type name
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public PropertyType FindProperty(
string name,
bool doBaseType = true
)
Public Function FindProperty (
name As String,
Optional doBaseType As Boolean = true
) As PropertyType
public:
PropertyType^ FindProperty(
String^ name,
bool doBaseType = true
)
member FindProperty :
name : string *
?doBaseType : bool
(* Defaults:
let _doBaseType = defaultArg doBaseType true
*)
-> PropertyType
Parameters
- name
- Type: SystemString
a property type name - doBaseType (Optional)
- Type: SystemBoolean
[Missing <param name="doBaseType"/> documentation for "M:VelocityGraph.EdgeType.FindProperty(System.String,System.Boolean)"]
Return Value
Type:
PropertyTypea looked up property type or null if no such property type exist
See Also