protected BuilderPropertyPosition(BuilderCategory builderCategory)
 {
     BuilderCategory = builderCategory;
 }
 /// <summary>
 ///     Initialize a new <see cref="BuilderPropertyPosition" />
 /// </summary>
 /// <param name="builderCategory">The category of the <see cref="IBuilderPropertyView" /></param>
 /// <returns>Return the <see cref="BuilderPropertyPosition" /> which represents the give category</returns>
 public static BuilderPropertyPosition FromCategory(BuilderCategory builderCategory)
 {
     return(new BuilderPropertyPosition(builderCategory));
 }