Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed HightScale to HeightScale #1444

Merged
merged 1 commit into from
Jun 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5023,7 +5023,7 @@
},
{
"QName": ":custScaleY",
"PropertyName": "HightScale",
"PropertyName": "HeightScale",
"Type": "Int32Value",
"PropertyComments": "Height Scale"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4542,7 +4542,7 @@ public static class NoNamespace
/// <para>As an XML attribute, it:</para>
/// <list type="bullet">
/// <item><description>is contained in the following XML elements: <see cref="DGM.prSet" />.</description></item>
/// <item><description>corresponds to the following strongly-typed properties: PropertySet.HightScale.</description></item>
/// <item><description>corresponds to the following strongly-typed properties: PropertySet.HeightScale.</description></item>
/// </list>
/// </remarks>
public static readonly XName custScaleY = "custScaleY";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6910,7 +6910,7 @@ public Int32Value? WidthScale
/// <para>Height Scale</para>
/// <para>Represents the following attribute in the schema: custScaleY</para>
/// </summary>
public Int32Value? HightScale
public Int32Value? HeightScale
{
get => GetAttribute<Int32Value>();
set => SetAttribute(value);
Expand Down Expand Up @@ -7020,7 +7020,7 @@ internal override void ConfigureMetadata(ElementMetadata.Builder builder)
.AddAttribute("custSzX", a => a.FixedWidthOverride)
.AddAttribute("custSzY", a => a.FixedHeightOverride)
.AddAttribute("custScaleX", a => a.WidthScale)
.AddAttribute("custScaleY", a => a.HightScale)
.AddAttribute("custScaleY", a => a.HeightScale)
.AddAttribute("custT", a => a.TextChanged)
.AddAttribute("custLinFactX", a => a.FactorWidth)
.AddAttribute("custLinFactY", a => a.FactorHeight)
Expand Down