BorderPosition

Description

Determines where exactly the border is built.

Values of this enumeration:

  • Internal - The border is built inside the input object.
  • External - The border is built outside the input object.
  • Centered - The border is built inside and outside the input object.

namespace BorderPosition
{
	enum Type
	{
		Internal,
		External,
		Centered
	};
}