Example #1
0
        private static bool _getLayersParentsIsSelected(Layerage layerage)
        {
            if (layerage.Parents == null)
            {
                return(false);
            }
            if (layerage.Parents.Self.IsSelected == true)
            {
                return(true);
            }

            return(LayerageCollection._getLayersParentsIsSelected(layerage.Parents));
        }