hasSameShieldLevel property
bool
get
hasSameShieldLevel
Whether the shield has the same level as the parent road.
This flag is meaningful for road code items and indicates if the shield's importance matches the road the signpost is attached to.
Returns
bool:truewhen the shield level matches the parent road; otherwisefalse.
Implementation
bool get hasSameShieldLevel {
final OperationResult resultString = objectMethod(
pointerId,
'SignpostItem',
'hasSameShieldLevel',
);
return resultString['result'];
}