Exemplo n.º 1
0
 public DbShortcut(ShortcutTaskbarTarget targetTaskbar, int?slotLevelIndex, int slotIndex, ShortcutType type, uint objectId, ShortcutObjectType objectType, uint objectIndex, uint userId, uint objectData, string text)
 {
     TargetTaskbar  = targetTaskbar;
     SlotLevelIndex = slotLevelIndex;
     SlotIndex      = slotIndex;
     Type           = type;
     ObjectId       = objectId;
     ObjectType     = objectType;
     ObjectIndex    = objectIndex;
     UserId         = userId;
     ObjectData     = objectData;
     Text           = text;
 }
Exemplo n.º 2
0
 public DbShortcut(ShortcutTaskbarTarget targetTaskbar, int slotIndex, ShortcutType type, uint objectId, ShortcutObjectType objectType, uint objectIndex, uint userId, uint objectData, string text)
     : this(targetTaskbar, null, slotIndex, type, objectId, objectType, objectIndex, userId, objectData, text)
 {
 }