Aspose::Words::Drawing::Adjustment class

Adjustment class

Represents adjustment values that are applied to the specified shape.

class Adjustment : public System::Object

Methods

MethodDescription
get_Name() constGets the name of the adjustment.
get_Value() constGets or sets the raw value of the adjustment.
GetType() const override
Is(const System::TypeInfo&) const override
set_Value(int32_t)Setter for Aspose::Words::Drawing::Adjustment::get_Value.
static Type()

Examples

Shows how to work with adjustment raw values.

auto doc = System::MakeObject<Aspose::Words::Document>(get_MyDir() + u"Rounded rectangle shape.docx");
auto shape = System::ExplicitCast<Aspose::Words::Drawing::Shape>(doc->GetChild(Aspose::Words::NodeType::Shape, 0, true));

System::SharedPtr<Aspose::Words::Drawing::AdjustmentCollection> adjustments = shape->get_Adjustments();
ASSERT_EQ(1, adjustments->get_Count());

System::SharedPtr<Aspose::Words::Drawing::Adjustment> adjustment = adjustments->idx_get(0);
ASSERT_EQ(u"adj", adjustment->get_Name());
ASSERT_EQ(16667, adjustment->get_Value());

adjustment->set_Value(30000);

doc->Save(get_ArtifactsDir() + u"Shape.Adjustments.docx");

See Also