/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Enums/IconOptions.cs
37 строк
802 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Enums { /// <summary> /// Behavior used to retrieve and adjust icons /// </summary> [Flags] public enum IconOptions { /// <summary> /// Default. No options. /// </summary> None = 0, /// <summary> /// Increase requested size based on the displays DPI setting. /// </summary> UseCurrentScale = 1, /// <summary> /// Retrieve only the file icon, even a thumbnail is available. This has the best performance. /// </summary> ReturnIconOnly = 2, /// <summary> /// Retrieve only the thumbnail. /// </summary> ReturnThumbnailOnly = 4, /// <summary> /// Retrieve a thumbnail only if it is cached or embedded in the file. /// </summary> ReturnOnlyIfCached = 8, } }