Class PmpControlDisplayingEventArgs
- Namespace
- Hymma.Solidworks.Addins
- Assembly
- Hymma.Solidworks.Addins.dll
provides useful arguments and parameters for Displaying
public class PmpControlDisplayingEventArgs : EventArgs
- Inheritance
-
PmpControlDisplayingEventArgs
- Derived
- Inherited Members
Constructors
PmpControlDisplayingEventArgs(IPropertyManagerPageControl)
default constructor
public PmpControlDisplayingEventArgs(IPropertyManagerPageControl control)
Parameters
controlIPropertyManagerPageControl
Properties
Left
Left edge of the control
Use this proeprty and the Top property to palce controls side by side
The value is in dialog units relative to the group box that the control is in. The left edge of the group box is 0; the right edge of the group box is 100
public short Left { get; set; }
Property Value
Remarks
By default, the left edge of a control is either the left edge of its group box or indented a certain distance. this property overrides that default value
OptionsForResize
Gets or sets how to override the SOLIDWORKS default behavior when changing the width of a PropertyManager page.
Resize the PropertyManager page as defined in ControlResizeStyles
you can use ths porperty only before the control is displayed or while it is closed
public int OptionsForResize { get; set; }
Property Value
Width
By default, the width of the control is usually set so that it extends to the right edge of its group box (not for buttons). Using this API overrides that default.
The value is in dialog units relative to the group box that the control is in. The width of the group box is 100
public short Width { get; set; }