ShadowType

ShadowType enumeration

Anger typen av en formskugga.

public enum ShadowType

Värderingar

namnVärdeBeskrivning
ShadowMixed-2Ingen av fördefinierade skuggförinställningar.
Shadow11Första skuggtyp.
Shadow1010Tionde skuggtyp.
Shadow1111Elfte skuggtyp.
Shadow1212Tolfte skuggtypen.
Shadow1313Trettonde skuggtyp.
Shadow1414Fjortonde skuggtyp.
Shadow1515Femtonde skuggtyp.
Shadow1616Sextonde skuggtyp.
Shadow1717Sjuttonde skuggtyp.
Shadow1818Artonde skuggtyp.
Shadow1919Nittonde skuggtyp.
Shadow22Andra skuggtyp.
Shadow2020Tjugonde skuggtyp.
Shadow2121Tjugoförsta skuggtyp.
Shadow2222Tjugo sekunders skuggtyp.
Shadow2323Tjugotredje skuggtyp.
Shadow2424Tjugofjärde skuggtyp.
Shadow2525Tjugofemte skuggtyp.
Shadow2626Tjugosjätte skuggtyp.
Shadow2727Tjugosjunde skuggtyp.
Shadow2828Tjugoåttonde skuggtyp.
Shadow2929Tjugonionde skuggtyp.
Shadow33Tredje skuggtypen.
Shadow3030Trettionde skuggtyp.
Shadow3131Trettioförsta skuggtyp.
Shadow3232Trettio sekunders skuggtyp.
Shadow3333Trettiotredje skuggtyp.
Shadow3434Trettiofjärde skuggtyp.
Shadow3535Trettiofemte skuggtyp.
Shadow3636Trettiosjätte skuggtyp.
Shadow3737Trettiosjunde skuggtyp.
Shadow3838Trettioåttonde skuggtyp.
Shadow3939Trettionionde skuggtyp.
Shadow44Fjärde skuggtypen.
Shadow4040Fyrtionde skuggtyp.
Shadow4141Fyrtioförsta skuggtyp.
Shadow4242Fyrtio sekunders skuggtyp.
Shadow4343Fyrtiotredje skuggtyp.
Shadow55Femte skuggtyp.
Shadow66Sjätte skuggtypen.
Shadow77Sjunde skuggtypen.
Shadow88Åttonde skuggtyp.
Shadow99Nionde skuggtyp.

Anmärkningar

ShadowType är inte ett enkelt attribut, utan en förinställning som ställer in flera attribut samtidigt som bildar skuggans utseende.

Exempel

Visar hur man arbetar med en skuggformatering för formen.

Document doc = new Document(MyDir + "Shape stroke pattern border.docx");
Shape shape = (Shape)doc.GetChildNodes(NodeType.Shape, true)[0];

if (shape.ShadowFormat.Visible && shape.ShadowFormat.Type == ShadowType.Shadow2)                
    shape.ShadowFormat.Type = ShadowType.Shadow7;

if (shape.ShadowFormat.Type == ShadowType.ShadowMixed)            
    shape.ShadowFormat.Clear();

Se även