M
Mr. X.
In VB.NET :
Control cc;
....
cc.Anchor = cc.Anchor and not AnchorStyles.Left and not AnchorStyles.Right;
This sets the Anchor attributes without AnchorStyles.Left,
AnchorStyles.Right;
What is the equivalent code in C# ?
Thanks
Control cc;
....
cc.Anchor = cc.Anchor and not AnchorStyles.Left and not AnchorStyles.Right;
This sets the Anchor attributes without AnchorStyles.Left,
AnchorStyles.Right;
What is the equivalent code in C# ?
Thanks