public ItemLocationDirect(IItemLocation from) { CopyFrom(from); }
public ItemLocationDirectAutoSize(IItemLocation from) { CopyFrom(from); }
public ItemLocationDirectAspectPreserving(IItemLocation from) { CopyFrom(from); }
/// <summary> /// Creates a layer at the provided <paramref name="location"/>. /// </summary> /// <param name="parentLayer">The parent layer of the newly created layer.</param> /// <param name="location">The position of the layer on the printable area in points (1/72 inch).</param> /// <param name="coordinateSystem">The coordinate system to use for the layer.</param> public XYZPlotLayer(HostLayer parentLayer, IItemLocation location, G3DCoordinateSystem coordinateSystem) : base(parentLayer, location) { this.CoordinateSystem = coordinateSystem; this.AxisStyles = new AxisStyleCollection(); this.Scales = new ScaleCollection(3); this.GridPlanes = new GridPlaneCollection(); this.GridPlanes.Add(new GridPlane(CSPlaneID.Front)); this.PlotItems = new PlotItemCollection(this); }
/// <summary> /// Creates a layer at the designated <paramref name="location"/> /// </summary> /// <param name="parentLayer">The parent layer of the constructed layer.</param> /// <param name="location">The location of the constructed layer.</param> public XYZPlotLayer(HostLayer parentLayer, IItemLocation location) : this(parentLayer, location, new CS.G3DCartesicCoordinateSystem()) { }