Home
last modified time | relevance | path

Searched refs:RowComposedElement (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Drow_composed_element.cpp27 { "alignItems", [](const RowComposedElement& inspector) { return inspector.GetAlignItems(); } }, in __anonaec494f40202()
28 { "space", [](const RowComposedElement& inspector) { return inspector.GetSpace(); } }, in __anonaec494f40302()
29 … { "selfAlign", [](const RowComposedElement& inspector) { return inspector.GetVerticalAlign(); } }, in __anonaec494f40402()
30 …{ "justifyContent", [](const RowComposedElement& inspector) { return inspector.GetJustifyContent()… in __anonaec494f40502()
35 void RowComposedElement::Dump() in Dump()
44 std::unique_ptr<JsonValue> RowComposedElement::ToJsonObject() const in ToJsonObject()
53 std::string RowComposedElement::GetAlignItems() const in GetAlignItems()
73 std::string RowComposedElement::GetSpace() const in GetSpace()
87 std::string RowComposedElement::GetVerticalAlign() const in GetVerticalAlign()
113 std::string RowComposedElement::GetJustifyContent() const in GetJustifyContent()
[all …]
H A Drow_composed_element.h25 class ACE_EXPORT RowComposedElement : public InspectorComposedElement {
26 DECLARE_ACE_TYPE(RowComposedElement, InspectorComposedElement) in DECLARE_ACE_TYPE() argument
29 explicit RowComposedElement(const ComposeId& id) : InspectorComposedElement(id) {} in DECLARE_ACE_TYPE()
30 ~RowComposedElement() override = default;
H A Dinspector_composed_component.cpp143 …ONENT_TAG, [](const std::string& id) { return AceType::MakeRefPtr<V2::RowComposedElement>(id); } }, in __anona4bda69c1802()