Class ControlFlexLayoutPosition
- Namespace
- PnP.Core.Model.SharePoint
- Assembly
- PnP.Core.dll
Represents the position and dimensions of a control within a flexible layout on a canvas.
public class ControlFlexLayoutPosition
- Inheritance
-
ControlFlexLayoutPosition
- Inherited Members
Remarks
This class provides properties to define the X and Y coordinates, width, and height of a control. Additionally, it includes an optional identifier for grouping controls within a layout.
Properties
Height
Gets or sets the height of the object.
public double Height { get; set; }
Property Value
Width
Gets or sets the width of the object, typically measured in pixels.
public double Width { get; set; }
Property Value
WpGroupId
Gets or sets the unique identifier for the web part group associated with the entity.
public Guid? WpGroupId { get; set; }
Property Value
- Guid?
XPos
Gets or sets the X-coordinate position of the object.
public double XPos { get; set; }
Property Value
YPos
Gets or sets the vertical position of an object.
public double YPos { get; set; }