Skip to content

Instantly share code, notes, and snippets.

@sitefinitySDK
Created December 6, 2021 08:44
SF_9.2, SF_10.0, SF_10.1, SF_10.2, SF_11.0, SF_11.1, SF_11.2, SF_12.0, SF_12.1, SF_12.2, SF_13.0, SF_13.1, SF_13.2, SF_13.3, SF_14.0 - https://www.progress.com/documentation/sitefinity-cms/adding-layout-controls-to-pages-and-page-templates-webforms
var pageData = manager.GetPageDataList()
.Where(pd => pd.Status == Telerik.Sitefinity.GenericContent.Model.ContentLifecycleStatus.Live
&& pd.NavigationNode.Title == "Home")
.SingleOrDefault();
var layoutControlOnPage = pageData.Controls
.Where(c => c.ObjectType == typeof(LayoutControl).FullName
&& c.Caption == "Sample caption").FirstOrDefault();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment