Parameters
- item
- The item to add to the favorite collection. For example a folder connection or a toolbox.
- index
- The index at which the item is to be inserted.
Return Value
The favorite item. Null if the item cannot be added as a favorite.
You should always check CanAddAsFavorite before passing an item to this method.
{
gdbPath = "@C:\\myDataFolder\\myData.gdb";
var itemGDB = ItemFactory.Instance.Create(gdbPath);
// is the item already a favorite?
var favorite = FavoritesManager.Current.GetFavorite(itemGDB);
// no; add it with IsAddedToAllNewProjects set to true
if (favorite != null)
{
if (FavoritesManager.Current.CanAddAsFavorite(itemGDB))
FavoritesManager.Current.InsertFavorite(itemGDB, 1, true);
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)