Core2D.Path.XPathGeometryContext.XPathGeometryContext C# (CSharp) Метод

XPathGeometryContext() публичный Метод

Initializes a new instance of the XPathGeometryContext class.
public XPathGeometryContext ( XPathGeometry geometry ) : System
geometry XPathGeometry
Результат System
        public XPathGeometryContext(XPathGeometry geometry)
        {
            if (geometry == null)
            {
                throw new ArgumentNullException(nameof(geometry));
            }

            _geometry = geometry;
        }