MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / isInputProperty

Method isInputProperty

src/App/DocumentObject.cpp:783–790  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

781}
782
783bool DocumentObject::isInputProperty(const std::string& propName) const
784{
785 Property* prop = getPropertyByName(propName.c_str());
786 if (!prop) {
787 return false;
788 }
789 return isInputProperty(prop);
790}
791
792bool DocumentObject::isInputProperty(const Property* prop) const
793{

Callers 4

getPropTypeFunction · 0.80
buildDependencyListFunction · 0.80
validateExpressionMethod · 0.80
importExternalElementsFunction · 0.80

Calls 4

getPropertyByNameFunction · 0.85
c_strMethod · 0.45
getTypeMethod · 0.45
testStatusMethod · 0.45

Tested by

no test coverage detected