UIX_LayoutItemStyleFlags Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
m (Automatic page editing by robot)
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:UIX_LayoutItemStyleFlags Enumeration}}
 
{{#customTitle:UIX_LayoutItemStyleFlags Enumeration}}
 +
{{#parentPage:PXV:UIX_Enumerations|UIX_LayoutItemStyleFlags|enum}}
 +
{{ToWrite}}
 +
{{ToReview}}
  
 
Specifies the ...
 
Specifies the ...
Line 7: Line 11:
 
<pre class="brush:cpp;gutter:false">enum UIX_LayoutItemStyleFlags
 
<pre class="brush:cpp;gutter:false">enum UIX_LayoutItemStyleFlags
 
{
 
{
     UIX_LayoutItemStyle_NoClose = 1;
+
     UIX_LayoutItemStyle_NoClose           = 1,
     UIX_LayoutItemStyle_NoDock = 2;
+
     UIX_LayoutItemStyle_NoDock             = 2,
     UIX_LayoutItemStyle_NoFloat = 4;
+
     UIX_LayoutItemStyle_NoFloat           = 4,
     UIX_LayoutItemStyle_NoDropTarget = 8;
+
     UIX_LayoutItemStyle_NoDropTarget       = 8,
     UIX_LayoutItemStyle_NoCaption = 16;
+
     UIX_LayoutItemStyle_NoCaption         = 16,
     UIX_LayoutItemStyle_FixedSize = 32;
+
     UIX_LayoutItemStyle_FixedSize         = 32,
     UIX_LayoutItemStyle_NoRootGaps = 64;
+
     UIX_LayoutItemStyle_NoRootGaps         = 64,
     UIX_LayoutItemStyle_NoPaneGaps = 128;
+
     UIX_LayoutItemStyle_NoPaneGaps         = 128,
     UIX_LayoutItemStyle_NoTabBar = 256;
+
     UIX_LayoutItemStyle_NoTabBar           = 256,
     UIX_LayoutItemStyle_HideOneTab = 512;
+
     UIX_LayoutItemStyle_HideOneTab         = 512,
     UIX_LayoutItemStyle_TabBarBottom = 1024;
+
     UIX_LayoutItemStyle_TabBarBottom       = 1024,
     UIX_LayoutItemStyle_HideCloseTabsBtn = 2048;
+
     UIX_LayoutItemStyle_HideCloseTabsBtn   = 2048,
     UIX_LayoutItemStyle_CloseActiveTabBtn = 4096;
+
     UIX_LayoutItemStyle_CloseActiveTabBtn = 4096,
     UIX_LayoutItemStyle_TabsNoScroll = 8192;
+
     UIX_LayoutItemStyle_TabsNoScroll       = 8192,
     UIX_LayoutItemStyle_NoTabBarGripperBtn = 16384;
+
     UIX_LayoutItemStyle_NoTabBarGripperBtn = 16384,
     UIX_LayoutItemStyle_AddNewTabBtn = 32768;
+
     UIX_LayoutItemStyle_AddNewTabBtn       = 32768,
     UIX_LayoutItemStyle_ShowSortedTabsBtn = 65536;
+
     UIX_LayoutItemStyle_ShowSortedTabsBtn = 65536,
     UIX_LayoutItemStyle_ShowTabsThumbsBtn = 131072;
+
     UIX_LayoutItemStyle_ShowTabsThumbsBtn = 131072,
     UIX_LayoutItemStyle_TabsNoReorder = 262144;
+
     UIX_LayoutItemStyle_TabsNoReorder     = 262144,
     UIX_LayoutItemStyle_Splitted = 33554432;
+
    UIX_LayoutItemStyle_TabsNoShrink      = 524288,
     UIX_LayoutItemStyle_VertSplitters = 67108864;
+
    UIX_LayoutItemStyle_Spreadsheet        = 16777216,
 +
     UIX_LayoutItemStyle_Splitted           = 33554432,
 +
     UIX_LayoutItemStyle_VertSplitters     = 67108864,
 +
    UIX_LayoutItemStyle_StaticSplitters    = 134217728,
 
};
 
};
 
</pre>
 
</pre>
Line 69: Line 76:
 
:The ...
 
:The ...
 
;UIX_LayoutItemStyle_TabsNoReorder
 
;UIX_LayoutItemStyle_TabsNoReorder
 +
:The ...
 +
;UIX_LayoutItemStyle_TabsNoShrink
 +
:The ...
 +
;UIX_LayoutItemStyle_Spreadsheet
 
:The ...
 
:The ...
 
;UIX_LayoutItemStyle_Splitted
 
;UIX_LayoutItemStyle_Splitted
Line 74: Line 85:
 
;UIX_LayoutItemStyle_VertSplitters
 
;UIX_LayoutItemStyle_VertSplitters
 
:The ...
 
:The ...
 
+
;UIX_LayoutItemStyle_StaticSplitters
== See Also ==
+
:The ...
See also ...
+

Latest revision as of 04:40, 18 November 2020


Specifies the ...

Syntax

enum UIX_LayoutItemStyleFlags
{
    UIX_LayoutItemStyle_NoClose            = 1,
    UIX_LayoutItemStyle_NoDock             = 2,
    UIX_LayoutItemStyle_NoFloat            = 4,
    UIX_LayoutItemStyle_NoDropTarget       = 8,
    UIX_LayoutItemStyle_NoCaption          = 16,
    UIX_LayoutItemStyle_FixedSize          = 32,
    UIX_LayoutItemStyle_NoRootGaps         = 64,
    UIX_LayoutItemStyle_NoPaneGaps         = 128,
    UIX_LayoutItemStyle_NoTabBar           = 256,
    UIX_LayoutItemStyle_HideOneTab         = 512,
    UIX_LayoutItemStyle_TabBarBottom       = 1024,
    UIX_LayoutItemStyle_HideCloseTabsBtn   = 2048,
    UIX_LayoutItemStyle_CloseActiveTabBtn  = 4096,
    UIX_LayoutItemStyle_TabsNoScroll       = 8192,
    UIX_LayoutItemStyle_NoTabBarGripperBtn = 16384,
    UIX_LayoutItemStyle_AddNewTabBtn       = 32768,
    UIX_LayoutItemStyle_ShowSortedTabsBtn  = 65536,
    UIX_LayoutItemStyle_ShowTabsThumbsBtn  = 131072,
    UIX_LayoutItemStyle_TabsNoReorder      = 262144,
    UIX_LayoutItemStyle_TabsNoShrink       = 524288,
    UIX_LayoutItemStyle_Spreadsheet        = 16777216,
    UIX_LayoutItemStyle_Splitted           = 33554432,
    UIX_LayoutItemStyle_VertSplitters      = 67108864,
    UIX_LayoutItemStyle_StaticSplitters    = 134217728,
};

Constants

UIX_LayoutItemStyle_NoClose
The ...
UIX_LayoutItemStyle_NoDock
The ...
UIX_LayoutItemStyle_NoFloat
The ...
UIX_LayoutItemStyle_NoDropTarget
The ...
UIX_LayoutItemStyle_NoCaption
The ...
UIX_LayoutItemStyle_FixedSize
The ...
UIX_LayoutItemStyle_NoRootGaps
The ...
UIX_LayoutItemStyle_NoPaneGaps
The ...
UIX_LayoutItemStyle_NoTabBar
The ...
UIX_LayoutItemStyle_HideOneTab
The ...
UIX_LayoutItemStyle_TabBarBottom
The ...
UIX_LayoutItemStyle_HideCloseTabsBtn
The ...
UIX_LayoutItemStyle_CloseActiveTabBtn
The ...
UIX_LayoutItemStyle_TabsNoScroll
The ...
UIX_LayoutItemStyle_NoTabBarGripperBtn
The ...
UIX_LayoutItemStyle_AddNewTabBtn
The ...
UIX_LayoutItemStyle_ShowSortedTabsBtn
The ...
UIX_LayoutItemStyle_ShowTabsThumbsBtn
The ...
UIX_LayoutItemStyle_TabsNoReorder
The ...
UIX_LayoutItemStyle_TabsNoShrink
The ...
UIX_LayoutItemStyle_Spreadsheet
The ...
UIX_LayoutItemStyle_Splitted
The ...
UIX_LayoutItemStyle_VertSplitters
The ...
UIX_LayoutItemStyle_StaticSplitters
The ...