private void RenderSpatialElements() { MapDataRegion mapDataRegion = this.m_mapVectorLayer.MapDataRegion; if (mapDataRegion != null) { this.RenderGrouping(mapDataRegion.MapMember); } this.RenderNonBoundSpatialElements(); }
private void RenderNonBoundSpatialElements() { if (this.m_spatialDataMapper != null) { MapDataRegion mapDataRegion = this.m_mapVectorLayer.MapDataRegion; foreach (KeyValuePair <SpatialElementKey, SpatialElementInfoGroup> item in this.m_spatialElementsDictionary) { if (!item.Value.BoundToData) { this.RenderSpatialElementGroup(item.Value, mapDataRegion == null); } } } }
public MapMemberCollection(IDefinitionPath parentDefinitionPath, MapDataRegion owner, MapMember parent, MapMemberList memberDefs) : base(parentDefinitionPath, (ReportItem)owner) { this.m_parent = parent; this.m_memberDefs = memberDefs; }
public MapMemberCollection(IDefinitionPath parentDefinitionPath, MapDataRegion owner) : base(parentDefinitionPath, (ReportItem)owner) { }
public MapMember(IDefinitionPath parentDefinitionPath, MapDataRegion owner, MapMember parent) : base(parentDefinitionPath, owner, parent, 0) { }
public MapMember(IReportScope reportScope, IDefinitionPath parentDefinitionPath, MapDataRegion owner, MapMember parent, AspNetCore.ReportingServices.ReportIntermediateFormat.MapMember memberDef) : base(parentDefinitionPath, owner, parent, 0) { this.m_memberDef = memberDef; if (this.m_memberDef.IsStatic) { this.m_reportScope = reportScope; } if (this.m_memberDef.Grouping != null) { base.m_group = new Group(owner, this.m_memberDef, this); } }
public MapDynamicMemberInstance(MapDataRegion owner, MapMember memberDef, InternalDynamicMemberLogic memberLogic) : base(owner, memberDef) { this.m_memberLogic = memberLogic; this.ResetContext(); }