TMappl.LayerObjectFilterBitStore

Модуль: Mappl
Класс: TMappl

Класс объектового фильтра слоя

Объявление

property LayerObjectFilterBitStore[lCode: Integer]: TBitStore;

Описание

Пример

      var
        bs: TBitStore;
        oIndex: integer;
      begin
        bs:=Mappl.LayerObjectFilterClass[lCode];
        Count:=bs.Count;
        oIndex:=bs.FirstID;
        while oIndex >= 0 do
           oIndex:=bs.NextID;
      end;