Skip to content

Commit

Permalink
- update after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
mme1950 committed Jan 11, 2024
1 parent 7a64294 commit 9f5f094
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions ACadSharp/Entities/Dimension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,28 @@ public DimensionType Flags
}
}

/// <summary>
/// Ordinate type. If true, ordinate is X-type else is ordinate is Y-type
/// </summary>
public bool IsOrdinateTypeX
{
get
{
return this._flags.HasFlag(DimensionType.OrdinateTypeX);
}
set
{
if (value)
{
this._flags |= DimensionType.OrdinateTypeX;
}
else
{
this._flags &= ~DimensionType.OrdinateTypeX;
}
}
}

/// <summary>
/// Indicates if the dimension text has been positioned at a user-defined location rather than at the default location
/// </summary>
Expand Down

0 comments on commit 9f5f094

Please sign in to comment.