com.hcl.domino.jna.internal.structs.NotesViewColumnFormat2Struct Maven / Gradle / Ivy
/*
* ==========================================================================
* Copyright (C) 2019-2022 HCL America, Inc. ( http://www.hcl.com/ )
* All rights reserved.
* ==========================================================================
* Licensed under the Apache License, Version 2.0 (the "License"). You may
* not use this file except in compliance with the License. You may obtain a
* copy of the License at .
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
* ==========================================================================
*/
package com.hcl.domino.jna.internal.structs;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Arrays;
import java.util.List;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
/**
* This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA.
*/
public class NotesViewColumnFormat2Struct extends BaseStructure {
/** VIEW_COLUMN_FORMAT_SIGNATURE2 */
public short Signature;
/** FontID of column header. */
public int HeaderFontID;
/**
* UNID of view to switch to.
* C type : UNID
*/
public NotesUniversalNoteIdStruct ResortToViewUNID;
/** 0 based index of secondary resort column. */
public short wSecondResortColumnIndex;
public short Flags3;
public short wHideWhenFormulaSize;
public short wTwistieResourceSize;
/** V6 View Customization support */
public short wCustomOrder;
/** V6 View Customization support */
public short wCustomHiddenFlags;
/**
* V6 - Column Text Color
* C type : COLOR_VALUE
*/
public NotesColorValueStruct ColumnColor;
/**
* V6 - column header color
* C type : COLOR_VALUE
*/
public NotesColorValueStruct HeaderFontColor;
public NotesViewColumnFormat2Struct() {
super();
setAlignType(Structure.ALIGN_NONE);
}
public static NotesViewColumnFormat2Struct newInstance() {
return AccessController.doPrivileged((PrivilegedAction) () -> new NotesViewColumnFormat2Struct());
}
@Override
protected List getFieldOrder() {
return Arrays.asList(
"Signature", //$NON-NLS-1$
"HeaderFontID", //$NON-NLS-1$
"ResortToViewUNID", //$NON-NLS-1$
"wSecondResortColumnIndex", //$NON-NLS-1$
"Flags3", //$NON-NLS-1$
"wHideWhenFormulaSize", //$NON-NLS-1$
"wTwistieResourceSize", //$NON-NLS-1$
"wCustomOrder", //$NON-NLS-1$
"wCustomHiddenFlags", //$NON-NLS-1$
"ColumnColor", //$NON-NLS-1$
"HeaderFontColor" //$NON-NLS-1$
);
}
public NotesViewColumnFormat2Struct(Pointer peer) {
super(peer);
setAlignType(Structure.ALIGN_NONE);
}
public static NotesViewColumnFormat2Struct newInstance(final Pointer peer) {
return AccessController.doPrivileged((PrivilegedAction) () -> new NotesViewColumnFormat2Struct(peer));
}
public static class ByReference extends NotesViewColumnFormat2Struct implements Structure.ByReference {
};
public static class ByValue extends NotesViewColumnFormat2Struct implements Structure.ByValue {
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy