Where can I find this element?

Discussion in 'Scripting' started by ceo54, Sep 14, 2021.

  1. ceo54

    ceo54 MDL Addicted

    Aug 13, 2015
    867
    361
    30
    Hello,

    I'm looking for the status bar separator which is in Shellstyle.dll shel32.dll UI_File 3.0

    [​IMG]

    Here's my shell32 UI file

    Code:
    <duixml>
    <Element resid="FolderLayout" layout="shellborderlayout()" sheet="genericlayoutstyle">
    <StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
    <TemplateBackground id="atom(PreviewContainer)" height="53rp" layoutpos="bottom" layout="filllayout()">
    <TemplateBackground id="atom(PreviewShineLayer)"/>
    <PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
    <PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
    <Element layoutpos="Client" layout="filllayout()">
    <PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectPropertyString="prop:*System.OfflineStatus;*System.OfflineAvailability" layoutpos="Client"/>
    </Element>
    </PreviewBackground>
    <Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" FramePersistType="2" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
    </TemplateBackground>
    <TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
    <PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client" background="ARGB(0, 0, 0, 0)"/>
    <ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
    </TemplateBackground>
    <Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
    <ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="documentslayoutstyle" layoutpos="Left"/>
    <Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="documentslayoutstyle" layout="borderlayout()">
    <ViewHost id="atom(clientviewhost)" layout="borderlayout()" layoutpos="client">
    </ViewHost>
    </Element>
    </Element>
    </duixml>
    Any help will be greatly appreciated.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    I don't know, what You exactly need, but this is all what I know about it
    Code:
    verbar, vert, VerticalLine    |    U+007C (124)    HTML 5.0            vertical line (vertical bar), (pipe character)
    
    view: |   
    HTML code, also Numeric code: &#124;
    HTML name code: doesn't exist
    JS escape sequence: \u007C
    Or simply: U+007C    |    124    0174    Vertical bar
    
    Usege
    Unicode code points
    These glyphs are encoded in Unicode as follows:
    
    U+007C | VERTICAL LINE (HTML &#124; · &verbar;, &vert;, &VerticalLine;) (single vertical line)
    U+00A6 ¦ BROKEN BAR (HTML &#166; · &brvbar;) (single broken line)
    U+2016 ‖ DOUBLE VERTICAL LINE (HTML &#8214; · &Verbar;, &Vert;) (double vertical line ( {\displaystyle \|}\| ): used in pairs to indicate norm)
    U+FF5C | FULLWIDTH VERTICAL LINE (HTML &#65372;) (Fullwidth form)
    U+2225 ∥ PARALLEL TO (HTML &#8741; · &DoubleVerticalBar;, &par;, &parallel;, &shortparallel;, &spar;)
    U+01C0 ǀ LATIN LETTER DENTAL CLICK (HTML &#448;)
    U+01C1 ǁ LATIN LETTER LATERAL CLICK (HTML &#449;)
    U+2223 ∣ DIVIDES (HTML &#8739; · &mid;, &shortmid;, &smid;, &VerticalBar;)
    U+2502 │ BOX DRAWINGS LIGHT VERTICAL (HTML &#9474; · &boxv;) (and various other box drawing characters in the range U+2500 to U+257F)
    U+0964 । DEVANAGARI DANDA (HTML &#2404;)
    U+0965 ॥ DEVANAGARI DOUBLE DANDA (HTML &#2405;)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...