1
Automation Interface, Add-Ins and Tools / Package Flags and CheckedOutTo
« on: September 05, 2016, 05:05:06 pm »
I try to change the package flags within an Add-In. Deleting the CheckedOutTo flag is working. But adding the CheckedOutTo flag ends in an exception.
Actually in both cases the same
string flags = package.flags;
flags = // manipulate flags, add or delete CheckedOutTo
package.flags = flags;
package.Update();
Do you have any ideas how I can add the CheckedOutTo Flag without using the method VersionControlCheckout().
Dieter
Actually in both cases the same
string flags = package.flags;
flags = // manipulate flags, add or delete CheckedOutTo
package.flags = flags;
package.Update();
Do you have any ideas how I can add the CheckedOutTo Flag without using the method VersionControlCheckout().
Dieter