public static IEditorPageFrame GetActiveEditorPageFrame([NotNull] this IWorkingContext workingContext)
 {
     return(FrameLocator.GetActiveEditorPageFrame(workingContext));
 }
 public static IFrame ActiveFrame([NotNull] this IWorkingContext workingContext)
 {
     return(FrameLocator.ActiveFrame(workingContext));
 }
 public static IEditorFrame ActiveEditor([NotNull] this IWorkingContext workingContext)
 {
     return(FrameLocator.ActiveEditor(workingContext));
 }
 public static bool IsPropertyViewFrame(IViewFrame viewFrame)
 {
     return(FrameLocator.IsPropertyViewFrame(viewFrame));
 }
 public static IFrame GetFrame([NotNull] this IWorkingContext workingContext, string frameId)
 {
     return(FrameLocator.GetFrame(workingContext, frameId));
 }
 public static IViewFrame PartsViewFrame([NotNull] this IWorkingContext workingContext)
 {
     return(FrameLocator.PartsViewFrame(workingContext));
 }
 public static bool IsWithinPortalViewFrameHierarchy(IFrame frame)
 {
     return(FrameLocator.IsWithinPortalViewFrameHierarchy(frame));
 }
 public static IFrame ElementsFrame([NotNull] this IWorkingContext workingContext)
 {
     return(FrameLocator.ElementsFrame(workingContext));
 }
 public static IViewFrame GlobalLibraryTreeViewFrame([NotNull] this IWorkingContext workingContext)
 {
     return(FrameLocator.GlobalLibraryTreeViewFrame(workingContext));
 }
 public static IViewFrame FolderPortalViewFrame([NotNull] this IWorkingContext workingContext)
 {
     return(FrameLocator.FolderPortalViewFrame(workingContext));
 }
 public static IViewFrame ProjectTreeViewFrame([NotNull] this  IWorkingContext workingContext)
 {
     return(FrameLocator.ProjectLibraryTreeViewFrame(workingContext));
 }
Example #12
0
 public static IViewFrame DetailsViewFrame(this IWorkingContext workingContext)
 {
     return(FrameLocator.DetailsViewFrame(workingContext));
 }