Skip to content

Instantly share code, notes, and snippets.

@Civil3DToolChest
Created September 3, 2013 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Civil3DToolChest/6428170 to your computer and use it in GitHub Desktop.
Save Civil3DToolChest/6428170 to your computer and use it in GitHub Desktop.
Civil 3D Settings Abbreviations: General Text abbreviations.
public void setInfinityAbv(string abv)
{
civilDoc.Settings.DrawingSettings.AbbreviationsSettings.GeneralText.Infinity = abv;
}
public void setLeftAbv(string abv)
{
civilDoc.Settings.DrawingSettings.AbbreviationsSettings.GeneralText.Left = abv;
}
public void setRightAbv(string abv)
{
civilDoc.Settings.DrawingSettings.AbbreviationsSettings.GeneralText.Right = abv;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment